@charset "utf-8";
:root {
    --color: #ff0000;
    --vh: 100vh;
}

/*字体*/
@font-face {
    font-family: 'FutuBd';
    src: url('../fonts/FutuBd.ttf') format('ttf');
}
@font-face {
    font-family: 'Futura-Heavy';
    src: url('../fonts/Futura Heavy font.ttf') format('ttf');
}
@font-face {
    font-family: 'Futura-medium';
    src: url('../fonts/futura medium bt.ttf') format('ttf');
}
@font-face {
    font-family: 'Futura-medium-Italic';
    src: url('../fonts/Futura Medium Italic font.ttf') format('ttf');
}
@font-face {
    font-family: 'Futura-Book-Italic';
    src: url('../fonts/Futura Book Italic font.ttf') format('ttf');
}
@font-face {
    font-family: 'Futura-Book';
    src: url('../fonts/Futura Book font.ttf') format('ttf');
}


* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: calc(100vw / 19.2);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
}

html ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

html ::-webkit-scrollbar-thumb {
    /*滚动条-滑块*/
    border-radius: 3px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ff0000;
}

html ::-webkit-scrollbar-track {
    /*滚动条-背景*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background: #ededed;
}

@media (min-width: 1901px) {
    html {
        font-size: 100px;
    }
}

@media (max-width: 1580px) {
    html {
        font-size: 66px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 7.5);
    }
}

body {
    min-height: 100%;
    font-family: 'FutuBd', 'Arial';
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

@media (max-width: 1580px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 0.28rem;
    }
}

img {
    max-width: 100%;
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    font-weight: normal;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.3s;
}

input,
button {
    /*-webkit-appearance: none;*/
    border-radius: 0;
}

button {
    cursor: pointer;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

textarea {
    resize: none;
    overflow: auto;
}

input,
button,
textarea,
select {
    border: 0;
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    font-weight: normal;
    color: inherit;
    background: transparent;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

table {
    border-collapse: collapse;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    zoom: 1;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.container {
    margin: 0 auto;
    width: 85%;
    max-width: 1600px;
    padding: 0;
}

@media (max-width: 1260px) {
    .container {
        width: 90%;
    }
}

.font16 {
    font-size: 16px;
}

@media (max-width: 1580px) {
    .font16 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .font16 {
        font-size: 0.28rem;
    }
}

.public-scrollbar {
    scrollbar-width: thin;
}

.public-scrollbar ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.public-scrollbar ::-webkit-scrollbar-thumb {
    /*滚动条-滑块*/
    border-radius: 3px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ff0000;
}

.public-scrollbar ::-webkit-scrollbar-track {
    /*滚动条-背景*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background: #ededed;
}

.public-img {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.public-img::before {
    content: "";
    display: block;
    position: relative;
    z-index: 0;
    padding-top: 100%;
}

.public-img > img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.public-content {
    color: #666;
    line-height: 1.8;
}

.public-content a {
    color: #666;
}

.public-content table {
    max-width: 100%;
}

.public-content table td,
.public-content table th {
    padding: 10px 15px;
    border: 1px solid #dbf1ed;
}

.public-content li {
    margin-left: 15px;
    list-style: disc;
}

.public-content ol {
    margin-left: 15px;
    list-style: decimal;
}

.public-content img,
.public-content video {
    max-width: 100%;
    height: auto !important;
}

#hi-upgrade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

#hi-upgrade .hi-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -177px 0 0 -450px;
    width: 900px;
}

#hi-upgrade .hi-wrap .hi-title {
    font-size: 30px;
    line-height: 40px;
    color: #333;
}

#hi-upgrade .hi-wrap .hi-close {
    margin: 10px 0;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    color: #ff0000;
}

#hi-upgrade .hi-wrap .hi-close:hover {
    text-decoration: underline;
}

#hi-upgrade .hi-wrap .hi-text1 {
    color: #666;
}

#hi-upgrade .hi-wrap .hi-text1 span {
    color: #ff0000;
}

#hi-upgrade .hi-wrap .hi-text2 {
    position: relative;
    margin: 60px 0;
    color: #333;
}

#hi-upgrade .hi-wrap .hi-text2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    border-top: 1px solid #ddd;
}

#hi-upgrade .hi-wrap .hi-text2 span {
    position: relative;
    z-index: 5;
    padding: 0 30px;
    background: #fff;
}

#hi-upgrade .hi-wrap .hi-list {
    overflow: hidden;
}

#hi-upgrade .hi-wrap .hi-list li {
    display: inline-block;
    width: 16%;
}

#hi-upgrade .hi-wrap .hi-list li div {
    margin: 0 auto 5px;
    width: 50px;
    height: 50px;
}

#hi-upgrade .hi-wrap .hi-list li a {
    color: #666;
}

#hi-upgrade .hi-wrap .hi-list li a:hover {
    color: #ff0000;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
    background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
    background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
    background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
    background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
    background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}

#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
    background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}

/* 占位标签，设置导航样式 */
#c-placeholder {
    height: 1rem;
}

@media (max-width: 991px) {
    #c-placeholder {
        height: 1.2rem;
    }
}

/*顶部*/
#c-header {
    display: flex;
    align-items: center;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #373737;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 991px) {
    #c-header {
        line-height: 1.2rem;
        height: 1.2rem;
    }
}

#c-header a {
    color: #fff;
    transition: 0.3s;
}

#c-header .container {
    /*position: relative;*/
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    max-width: 100%;
    padding: 0;
}

@media (max-width: 991px) {
    #c-header .container {
        position: initial;
    }
}

#c-header .container .bgcolor {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 106.25%;
    height: 100%;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    opacity: 0;
    border-radius: 0.5rem;
}

@media (max-width: 991px) {
    #c-header .container .bgcolor {
        border-radius: initial;
        box-shadow: initial;
        height: 101%;
        width: 100% !important;
    }
}

#c-header .container::before {
    display: none;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 106.25%;
    height: 100%;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    opacity: 0;
    border-radius: 0.5rem;
}

@media (max-width: 991px) {
    #c-header .container::before {
        border-radius: initial;
        box-shadow: initial;
        height: 101%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    #c-header .container {
        height: 1.2rem;
    }
}

#c-header .container:hover .bgcolor {
    border-radius: 0;
}

@media (max-width: 991px) {
    #c-header .container:hover .bgcolor {
        width: 100% !important;
    }
}

#c-header .container:hover::before {
    border-radius: 0;
}

@media (max-width: 991px) {
    #c-header .container:hover::before {
        width: 100%;
    }
}

#c-header .c-right-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-header .c-right-box.c-right-box2 {
    display: none;
}

@media (max-width: 991px) {
    #c-header .c-right-box.c-right-box2 {
        display: flex;
    }
}

#c-header.c-head-move {
    top: -80px !important;
}

@media (max-width: 991px) {
    #c-header.c-head-move {
        top: -1.2rem !important;
    }
}

/*#c-header.c-style2 {*/
/*    top: 0.1rem;*/
/*    border-bottom: 1px solid transparent;*/
/*    color: #333;*/
/*}*/

@media (max-width: 991px) {
    #c-header.c-style2 {
        top: 0;
    }
}

#c-header.c-style2 .container .bgcolor {
    opacity: 1;
}

#c-header.c-style2 .container::before {
    opacity: 1;
}

/*#c-header.c-style2 a {*/
/*    color: #333;*/
/*}*/

#c-header.c-style2:hover {
    top: 0;
}

/*顶部logo*/
#c-header .c-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: .7rem;
}

#c-header .c-logo .c-img-box {
    display: flex;
    align-items: center;
}

#c-header .c-logo .c-img-box img {
   width: auto;
}


#c-header .c-logo .c-img-box svg {
    width: 1.93rem;
    height: 0.47rem;
}

@media (max-width: 991px) {
    #c-header .c-logo .c-img-box svg {
        width: 1.93rem;
        height: 0.47rem;
    }
}

#c-header .c-logo .c-img-box svg path {
    fill: #fff;
    opacity: 1;
    stroke: none;
}

#c-header.c-style2 .c-logo svg path {
    fill: #ff0000;
}

/*顶部pc导航*/
#c-header .c-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    #c-header .c-nav {
        display: none;
    }
}

#c-header .c-nav > li {
    /*position: relative;*/
    padding: 0 0.35rem;
}

#c-header .c-nav > li:last-child {
    margin-right: 0;
}

#c-header .c-nav > li > .c-title-box {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#c-header .c-nav > li > .c-title-box > a {
    display: flex;
    align-items: center;
}

#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
    margin-left: 0.05rem;
    width: 10px;
    height: 6px;
}

#c-header .c-nav > li > .c-title-box img path,
#c-header .c-nav > li > .c-title-box svg path {
    fill: #333;
    transition: all 0.3s;
}

#c-header .c-nav > li a:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: 0.3s;
}

#c-header .c-nav li a {
    position: relative;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
    font-family: 'Futura-Heavy';
}

#c-header .c-nav li a{
    line-height: 80px;
}

#c-header .c-nav ul {
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    min-width: 1.5rem;
    line-height: 0.5rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 0 0 0.1rem 0.1rem;
    opacity: 0;
}

#c-header .c-nav ul li {
    border-bottom: 1px solid #eee;
}

#c-header .c-nav ul li:last-child {
    border: 0;
}

#c-header .c-nav ul li a {
    color: #333;
}

#c-header .c-nav .zproduct-xiala {
    left: -2.9rem;
    transform: translateX(0);
    width: 10rem;
    height: 3.9rem;
    background-color: #f8f8f8;
    border-radius: 0 0 0.1rem 0.1rem;
    overflow: hidden;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 {
    height: 100%;
    overflow: hidden;
    display: flex;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft {
    width: 2.4rem;
    height: 100%;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 {
    padding: 0 0.4rem;
    line-height: 0.9rem;
    text-align: left;
    display: flex;
    align-items: center;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 span {
    display: flex;
    align-items: center;
    color: #666666;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 span img {
    width: 0.5rem;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 span:nth-child(1) {
    flex-shrink: 0;
    min-height: 0.9rem;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 span:nth-child(2) {
    padding: 0.15rem 0;
    margin-left: 0.15rem;
}

@media (max-width: 1580px) {
    #c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1 span:nth-child(2) {
        font-size: 14px;
    }
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zleft .zcn1.on {
    background-color: #Fff;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright {
    width: 7.6rem;
    height: 100%;
    background-color: #Fff;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 {
    height: 100%;
    display: none;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1.on {
    display: block;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 {
    display: flex;
    align-items: center;
    height: 0.9rem;
    justify-content: space-between;
    padding: 0 0.5rem;
    position: relative;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 1rem);
    height: 1px;
    background-color: #e5e5e5;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn2 {
    color: #333333;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn3 {
    transition: all 0.5s;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn3 svg {
    margin-left: 0.1rem;
    width: 0.08rem;
    height: 0.12rem;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn3 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn3:hover {
    color: #ff0000;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox2 .zcn3:hover svg path {
    fill: #ff0000;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 {
    height: 3rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: 0.3rem;
    padding: 0 0.3rem 0.5rem 0.5rem;
    margin-top: 0.4rem;
    overflow: auto;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4 {
    width: 1.8rem;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
}

@media (max-width: 1580px) {
    #c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4 {
        width: 1.7rem;
    }
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4:nth-child(3n) {
    margin-right: 0;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4 .img {
    width: 100%;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4 .img img {
    width: 100%;
    transition: all 0.5s;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4 .text {
    margin-top: 0.1rem;
    color: #666666;
    text-align: center;
    line-height: 1.5em;
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4:hover .img img {
    transform: scale(1.05);
}

#c-header .c-nav .zproduct-xiala .zproduct-xiala2 .zright .zrightbox1 .zrightbox3 .zcn4:hover .text {
    color: #ff0000;
}

#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
    color: #ff0000;
}

#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
    width: 100%;
}

#c-header.c-style2 .c-nav li.on > .c-title-box svg path,
#c-header .c-nav li:hover > .c-title-box svg path {
    fill: #ff0000 !important;
}

#c-header.c-style2 .c-nav li .c-title-box svg path {
    fill: #333;
}

/*顶部移动端导航*/
#c-header .c-nav2 {
    position: absolute;
    top: 1.2rem;
    left: 0;
    width: 100%;
    height: 0;
    line-height: 1rem;
    color: #333;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    text-align: left;
    /*display: none;*/
}

#c-header .c-nav2 > li:last-child {
    border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
    padding: 0 0.5rem;
    border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
    #c-header .c-nav2 li {
        padding: 0 0.5rem;
    }
}

#c-header .c-nav2 li .c-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
    width: 0.3rem;
    height: 0.3rem;
    transition: all 0.3s;
}

#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
    fill: #333;
}

#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
    transform: rotate(90deg);
}

#c-header .c-nav2 li a {
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
    color: #ff0000;
}

#c-header .c-nav2 li ul {
    display: none;
}

.c-open #c-header .c-nav2 {
    height: calc(100vh - 1.2rem);
}

.c-open #c-header {
    background-color: #Fff;
}

.c-open #c-header .container .c-logo .c-img-box svg path {
    fill: #ff0000;
}

.c-open #c-header .container .c-gn .ztop-language .cn1 svg path {
    fill: #666;
}

/*.c-open #c-header .container .c-gn .ztop-language .cn1 span {*/
/*    color: #666;*/
/*}*/

.c-open #c-header .container .c-gn .ztop-line {
    background-color: rgba(0, 0, 0, 0.2);
}

/*.c-open #c-header .container .c-right-box .c-switch i {*/
/*    background-color: #333;*/
/*}*/

/*顶部导航开关*/
#c-header .c-switch {
    position: relative;
    display: none;
    width: 0.48rem;
    height: 0.4rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    #c-header .c-switch {
        display: block;
    }
}

#c-header .c-switch i {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
    top: 0;
}

#c-header .c-switch i:nth-child(3) {
    bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
    top: 50%;
    margin-top: -1px;
}

/*#c-header.c-style2 .c-switch i {*/
/*    background: #333;*/
/*}*/

body.c-open #c-header .c-switch i:nth-child(2) {
    opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
    top: 50%;
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
    bottom: 50%;
    margin-bottom: -1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 顶部功能区 */
@media (max-width: 991px) {
    #c-header .c-right-box .c-gn {
        display: none !important;
    }
}

#c-header .c-right-box.c-right-box2 .c-gn {
    display: none !important;
}

@media (max-width: 991px) {
    #c-header .c-right-box.c-right-box2 .c-gn {
        margin-right: 0.3rem;
        display: flex !important;
    }
}

#c-header .c-gn {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1.35rem;
}

#c-header .c-gn .ztop-language {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

#c-header .c-gn .ztop-language .cn1 {
    display: flex;
    align-items: center;
}



#c-header .c-gn .ztop-language .cn1 svg {
    width: 0.2rem;
    height: 0.2rem;
    color: #fff;
}

@media (max-width: 991px) {
    #c-header .c-gn .ztop-language .cn1 svg {
        width: 0.3rem;
        height: 0.3rem;
    }
}

#c-header .c-gn .ztop-language .cn1 svg path {
    fill: #fff;
    opacity: 0.6;
    stroke: none;
    transition: all 0.5s;
}

#c-header .c-gn .ztop-language .cn1 span {
    margin-left: 0.08rem;
    color: rgba(255, 255, 255, 1);
    transition: all 0.5s;
    margin-right: 10px;
    font-size: 18px;
}

#c-header .c-gn .ztop-line {
    transition: all 0.5s;
    margin: 0 0.3rem;
    width: 1px;
    height: 0.15rem;
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    #c-header .c-gn .ztop-line {
        height: 0.3rem;
    }
}

#c-header .c-gn .ztop-search {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#c-header .c-gn > div{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
#c-header .c-gn > div:last-child{
    margin-right: 0;
}
#c-header i{
    color: #fff;
    font-size: 16px;
}

#c-header .c-gn .ztop-search svg {
    width: 36.36363636%;
    height: auto;
}

@media (max-width: 991px) {
    #c-header .c-gn .ztop-search svg {
        width: 0.24rem;
    }
}

#c-header .c-gn .ztop-search svg path {
    fill: #Fff;
    opacity: 1;
    stroke: none;
}

#c-header.c-style2 .c-gn .ztop-language .cn1 svg path {
    fill: #666;
    opacity: 1;
}

/*#c-header.c-style2 .c-gn .ztop-language .cn1 span {*/
/*    color: #666666;*/
/*}*/

#c-header.c-style2 .c-gn .ztop-line {
    background-color: rgba(0, 0, 0, 0.2);
}

#c-go-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff0000;
    cursor: pointer;
}

@media (max-width: 767px) {
    #c-go-top {
        display: none !important;
    }
}

#c-go-top img,
#c-go-top svg {
    width: 50%;
    height: 50%;
    transform: rotate(-90deg);
}

#c-go-top img path,
#c-go-top svg path {
    fill: #ffff;
}

#c-code-pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#c-code-pop .c-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 200px;
    border-radius: 5px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-code-pop .c-img-box .c-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    bottom: -60px;
    left: 50%;
    margin-left: -20px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s;
}

#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
    margin: 4px;
    width: 18px;
    height: 18px;
}

#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
    fill: #333;
    transition: all 0.5s;
}

#c-code-pop .c-img-box .c-close:hover {
    background-color: #ff0000;
}

#c-code-pop .c-img-box .c-close:hover svg path {
    fill: #fff;
}

#c-code-pop .c-img-box > img {
    width: 100%;
}

#c-code-pop .c-img-box .c-text {
    padding-top: 10px;
    line-height: 1;
    text-align: center;
    color: #333;
}

.textflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.textflow2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.textflow3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.textflow4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.textflow7 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.textflow10 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.font80 {
    font-size: 0.8rem;
}

.font72 {
    font-size: 0.72rem;
}

.font60 {
    font-size: 0.6rem;
}

.font58 {
    font-size: 0.58rem;
}

.font56 {
    font-size: 0.56rem;
}

.font54 {
    font-size: 0.54rem;
}

.font52 {
    font-size: 0.52rem;
}

.font50 {
    font-size: 0.5rem;
}

.font48 {
    font-size: 0.48rem;
}

.font46 {
    font-size: 0.46rem;
}

.font44 {
    font-size: 0.44rem;
}

.font42 {
    font-size: 0.42rem;
}

.font40 {
    font-size: 0.4rem;
}

@media (max-width: 991px) {
    .font40 {
        font-size: 0.4rem;
    }
}

.font38 {
    font-size: 0.38rem;
}

@media (max-width: 991px) {
    .font38 {
        font-size: 0.4rem;
    }
}

.font36 {
    font-size: 0.36rem;
}

@media (max-width: 991px) {
    .font36 {
        font-size: 0.4rem;
    }
}

.font34 {
    font-size: 0.34rem;
}

@media (max-width: 991px) {
    .font34 {
        font-size: 0.4rem;
    }
}

.font32 {
    font-size: 0.32rem;
}

@media (max-width: 991px) {
    .font32 {
        font-size: 0.4rem;
    }
}

.font30 {
    font-size: 0.3rem;
}

@media (max-width: 991px) {
    .font30 {
        font-size: 0.4rem;
    }
}

.font28 {
    font-size: 0.28rem;
}

@media (max-width: 991px) {
    .font28 {
        font-size: 0.4rem;
    }
}

.font26 {
    font-size: 26px;
}

@media (max-width: 1580px) {
    .font26 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .font26 {
        font-size: 0.3rem;
    }
}

.font24 {
    font-size: 24px;
}

@media (max-width: 1580px) {
    .font24 {
        font-size: 22px;
    }
}

@media (max-width: 1260px) {
    .font24 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .font24 {
        font-size: 0.3rem;
    }
}

.font22 {
    font-size: 22px;
}

@media (max-width: 1580px) {
    .font22 {
        font-size: 18px;
    }
}

@media (max-width: 1260px) {
    .font22 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .font22 {
        font-size: 0.3rem;
    }
}

.font20 {
    font-size: 20px;
}

@media (max-width: 1580px) {
    .font20 {
        font-size: 18px;
    }
}

@media (max-width: 1260px) {
    .font20 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .font20 {
        font-size: 0.3rem;
    }
}

.font18 {
    font-size: 18px;
}

@media (max-width: 1580px) {
    .font18 {
        font-size: 16px;
    }
}

@media (max-width: 1260px) {
    .font18 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .font18 {
        font-size: 0.28rem;
    }
}

.font16 {
    font-size: 16px;
}

@media (max-width: 1580px) {
    .font16 {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .font16 {
        font-size: 0.28rem;
    }
}

.font14 {
    font-size: 14px;
}

@media (max-width: 1580px) {
    .font14 {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .font14 {
        font-size: 0.24rem;
    }
}

.font12 {
    font-size: 12px;
}

.font-b {
    font-weight: bold;
}

/**********************************00-01 首页**********************************/
.public-banner {
    width: 100%;
    height: 6.4rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .public-banner {
        height: auto;
    }
}

.public-banner.public-bannerleft {
    text-align: left;
}

.public-banner.public-bannerleft .swiper-wrapper .swiper-slide .img::after {
    opacity: 0;
}

.public-banner.public-bannerleft .swiper-wrapper .swiper-slide .container {
    text-align: left;
}

.public-banner.public-bannerleft .swiper-wrapper .swiper-slide .container .cn1 {
    text-align: left;
}

.public-banner.public-bannerleft .swiper-wrapper .swiper-slide .container .cn2 {
    text-align: left;
}

.public-banner .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.public-banner .swiper-wrapper .swiper-slide .img {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .public-banner .swiper-wrapper .swiper-slide .img {
        height: auto;
    }
}

.public-banner .swiper-wrapper .swiper-slide .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.public-banner .swiper-wrapper .swiper-slide .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerscale 20s infinite linear;
}

@media (max-width: 991px) {
    .public-banner .swiper-wrapper .swiper-slide .img img.pc-img {
        display: none;
    }
}

.public-banner .swiper-wrapper .swiper-slide .img img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .public-banner .swiper-wrapper .swiper-slide .img img.mb-img {
        display: block;
    }
}

.public-banner .containerpublic {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    z-index: 3;
}

@media (max-width: 991px) {
    .public-banner .containerpublic {
        top: 1.2rem;
    }
}

.public-banner .textcontainer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.public-banner .textcontainer .cn1 {
    text-align: center;
    color: #ffffff;
    line-height: 1.22727273em;
}

.public-banner .textcontainer .cn2 {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.55555556em;
}

@keyframes bannerscale {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.public-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem 0;
    align-items: center;
}

.public-nav .pcn1 {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625em;
    transition: all 0.5s;
}

.public-nav .pcn1:hover {
    color: #ff0000;
}

.public-nav .pcn2 {
    display: flex;
    align-items: center;
    margin: 0 0.1rem;
    opacity: 0.8;
}

.public-nav .pcn2 img {
    width: 0.06rem;
}

@media (max-width: 991px) {
    .public-nav .pcn2 img {
        width: 0.12rem;
    }
}

.public-nav .pcn2 svg {
    width: 0.06rem;
    height: auto;
}

@media (max-width: 991px) {
    .public-nav .pcn2 svg {
        width: 0.12rem;
    }
}

.public-nav .pcn2 svg path {
    fill: #fff;
    opacity: 1;
    stroke: none;
}

.sanjinav {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sanjinav.sanjinav {
    background-color: #F8f8f8;
}

.sanjinav .public-nav .pcn1 {
    color: #666666;
}

.sanjinav .public-nav .pcn1:hover {
    color: #ff0000;
}

@media (max-width: 991px) {
    .sanjinav .public-nav .pcn1:last-child {
        display: none;
    }
}

.sanjinav .public-nav .pcn2 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
}

@media (max-width: 991px) {
    .sanjinav .public-nav .pcn2:nth-last-child(2) {
        display: none;
    }
}

.public-nav1 {
    display: flex;
    padding: 0.45rem 0;
    border-bottom: 1px solid #dfdfdf;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.public-nav1 .pcn1 {
    line-height: 1.625em;
    color: #333333;
    margin-right: 0.8rem;
    transition: all 0.5s;
    position: relative;
}

@media (max-width: 991px) {
    .public-nav1 .pcn1 {
        margin-right: 0.4rem;
    }
}

.public-nav1 .pcn1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 0;
    height: 2px;
    transition: all 0.5s;
    background-color: #ff0000;
}

.public-nav1 .pcn1.on {
    color: #ff0000;
    font-weight: bold;
}

.public-nav1 .pcn1.on::before {
    width: 100%;
}

.public-nav1 .pcn1:hover {
    color: #ff0000;
    font-weight: bold;
}

.public-nav1 .pcn1:hover::before {
    width: 100%;
}

.public-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.45rem 0;
}

.public-search .pleft2 {
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .public-search .pleft2 {
        width: 100%;
    }
}

.public-search .pleft2 form .cn11 input {
    width: 2rem;
    line-height: 0.57rem;
    height: 0.57rem;
    border-radius: 0.28rem;
    border: 1px solid #ededed;
    background-color: #Fff;
    padding: 0 0.25rem;
    color: #999999;
}

@media (max-width: 991px) {
    .public-search .pleft2 form .cn11 input {
        line-height: 0.8rem;
        height: 0.8rem;
        border-radius: 0.4rem;
        width: 4rem;
    }
}

@media (max-width: 767px) {
    .public-search .pleft2 form .cn11 input {
        width: 100%;
    }
}

.public-search .pleft2 form .cn11 input::placeholder {
    color: #999;
}

.public-search .pleft2 form .cn11 .layui-form-select .layui-edge {
    right: 0.25rem;
}

.public-search .pleft2 form .cn11 .layui-form-select dl {
    top: 0.57rem;
}

@media (max-width: 991px) {
    .public-search .pleft2 form .cn11 .layui-form-select dl {
        top: 0.8rem;
    }
}

.public-search .pleft2 form .cn11 .layui-form-selected input {
    border: 1px solid transparent;
}

.public-search .pleft {
    display: flex;
    align-items: center;
}

.public-search .pleft img {
    flex-shrink: 0;
    width: 0.21rem;
    height: 0.16rem;
    margin-right: 0.08rem;
}

@media (max-width: 991px) {
    .public-search .pleft img {
        width: 0.42rem;
        height: 0.32rem;
    }
}

.public-search .pleft .pcn1 {
    line-height: 1.625em;
    color: #666666;
}

.public-search .pleft .pcn1 em {
    font-style: normal;
    margin: 0 0.05rem;
    color: #ff0000;
}

.public-search .pright {
    width: 2.8rem;
    position: relative;
}

@media (max-width: 991px) {
    .public-search .pright {
        width: 4rem;
    }
}

@media (max-width: 767px) {
    .public-search .pright {
        margin-top: 0.5rem;
        width: 100%;
    }
}

.public-search .pright input {
    width: 100%;
    line-height: 0.57rem;
    border: 1px solid #ededed;
    border-radius: 0.28rem;
    padding: 0 1rem 0 0.25rem;
    background-color: #fff;
    color: #999999;
}

@media (max-width: 991px) {
    .public-search .pright input {
        line-height: 0.76rem;
        border-radius: 0.38rem;
    }
}

.public-search .pright input::placeholder {
    color: #999;
}

.public-search .pright button {
    position: absolute;
    right: 0.02rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-search .pright button {
        width: 0.7rem;
        height: 0.7rem;
        right: 0.05rem;
    }
}

.public-search .pright button img {
    width: 28.84615385%;
}

.public-search .pright button:hover {
    opacity: 0.8;
}

.problem-list {
    padding-bottom: 1.2rem;
    background-color: #f8f8f8;
}

.problem-list .box-list .box0 {
    transition: all 0.5s;
    display: block;
}

.problem-list .box-list .box0:nth-child(1) .box1 {
    border-top: 1px solid #e5e5e5;
}

.problem-list .box-list .box0 .box1 {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.3rem;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box1 {
        padding: 0.4rem 0.15rem;
    }
}

.problem-list .box-list .box0 .box1::before {
    content: "";
    position: absolute;
    left: 0.3rem;
    width: 0;
    background-color: #e5e5e5;
    transition: all 0.5s;
    height: 1px;
    bottom: 0;
}

.problem-list .box-list .box0 .box1 .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #999;
    display: flex;
    align-items: center;
    line-height: 30px;
    justify-content: center;
    color: #Fff;
    flex-shrink: 0;
    transition: all 0.5s;
    margin-right: 0.1rem;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box1 .icon {
        margin-right: 0.2rem;
    }
}

.problem-list .box-list .box0 .box1 .cn1 {
    color: #333333;
    width: 100%;
}

.problem-list .box-list .box0 .box1 .icon2 {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
    margin-left: 0.1rem;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box1 .icon2 {
        width: 0.2rem;
        height: 0.2rem;
        margin-left: 0.2rem;
    }
}

.problem-list .box-list .box0 .box1 .icon2 span {
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s;
    transform: translate(-50%, -50%);
    background-color: #666;
}

.problem-list .box-list .box0 .box1 .icon2 span:nth-child(1) {
    width: 100%;
    height: 2px;
}

.problem-list .box-list .box0 .box1 .icon2 span:nth-child(2) {
    width: 2px;
    height: 100%;
}

.problem-list .box-list .box0 .box3 {
    display: none;
}

.problem-list .box-list .box0 .box2 {
    display: flex;
    padding: 0.4rem 0.3rem;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box2 {
        padding: 0.4rem 0.15rem;
    }
}

.problem-list .box-list .box0 .box2 .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    line-height: 30px;
    justify-content: center;
    color: #Fff;
    flex-shrink: 0;
    transition: all 0.5s;
    margin-right: 0.1rem;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box2 .icon {
        margin-right: 0.2rem;
    }
}

.problem-list .box-list .box0 .box2 .cn1 {
    color: #666666;
    width: 100%;
    line-height: 1.875em;
}

.problem-list .box-list .box0 .box2 .icon2 {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
    margin-left: 0.1rem;
}

@media (max-width: 991px) {
    .problem-list .box-list .box0 .box2 .icon2 {
        width: 0.2rem;
        height: 0.2rem;
        margin-left: 0.2rem;
    }
}

.problem-list .box-list .box0.on2 .box1 {
    border-bottom-color: transparent !important;
}

.problem-list .box-list .box0.on {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.2rem;
}

.problem-list .box-list .box0.on .box1 {
    border-color: transparent !important;
}

.problem-list .box-list .box0.on .box1::before {
    width: calc(100% - 0.6rem);
}

.problem-list .box-list .box0.on .box1 .icon {
    background-color: #ff0000;
}

.problem-list .box-list .box0.on .box1 .icon2 span {
    background-color: #ff0000;
}

.problem-list .box-list .box0.on .box1 .icon2 span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.problem-list .box-list .box0:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.2rem;
}

.problem-list .box-list .box0:hover .box1 .icon {
    background-color: #ff0000;
}

.problem-list .box-list .box0:hover .box1 .icon2 span {
    background-color: #ff0000;
}

.public-page {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.public-page .num {
    width: 0.47rem;
    height: 0.47rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0.1rem;
    color: #1b1b1b;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-page .num {
        width: 0.55rem;
        height: 0.55rem;
    }
}

.public-page .num:hover {
    background-color: #ff0000;
    color: #Fff;
}

.public-page .num.on {
    background-color: #ff0000;
    color: #Fff;
}

.public-page .num2 {
    width: 0.47rem;
    height: 0.47rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0.1rem;
    color: #1b1b1b;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-page .num2 {
        width: 0.55rem;
        height: 0.55rem;
    }
}

.public-page .pleft {
    width: 0.47rem;
    height: 0.47rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0.1rem;
    color: #1b1b1b;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-page .pleft {
        width: 0.55rem;
        height: 0.55rem;
    }
}

.public-page .pleft.pright svg {
    transform: rotate(0deg);
}

.public-page .pleft svg {
    width: 0.07rem;
    height: 0.11rem;
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .public-page .pleft svg {
        width: 0.14rem;
        height: 0.22rem;
    }
}

.public-page .pleft svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
}

.public-page .pleft:hover {
    background-color: #ff0000;
    color: #Fff;
}

.public-page .pleft:hover svg path {
    fill: #Fff;
}

.public-page .pleft.on {
    background-color: #ff0000;
    color: #Fff;
}

.public-page .pleft.on svg path {
    fill: #Fff;
}

.public-advertisement {
    position: relative;
}

.public-advertisement .img::before {
    padding-top: 20.83333333%;
}

@media (max-width: 991px) {
    .public-advertisement .img::before {
        padding-top: 80%;
    }
}

.public-advertisement .img img {
    animation: bannerscale 20s infinite linear;
}

.public-advertisement .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.public-advertisement .container .cn1 {
    text-align: center;
    color: #ffffff;
    line-height: 1.38461538em;
}

@media (max-width: 991px) {
    .public-advertisement .container .cn1 {
        font-size: 0.4rem;
    }
}

.public-advertisement .container .public-btn {
    margin-top: 0.3rem;
    justify-content: center;
}

.public-btn {
    display: flex;
}

.public-btn .public-btn0 {
    min-width: 1.68rem;
    line-height: 0.56rem;
    border-radius: 0.28rem;
    background-color: #ff0000;
    color: #fff;
    transition: all 0.5s;
    padding: 0 0.2rem;
    text-align: center;
}

@media (max-width: 991px) {
    .public-btn .public-btn0 {
        min-width: 2.5rem;
        padding: 0 0.3rem;
        line-height: 0.76rem;
        border-radius: 0.38rem;
    }
}

.public-btn .public-btn0:hover {
    opacity: 0.8;
}

.public-btn2 {
    display: flex;
}

.public-btn2 .public-btn0 {
    line-height: 45px;
    border-radius: 22px;
    color: #fff;
    padding: 0 20px;
    text-align: center;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 18px;
    font-family: 'Futura-medium';
    margin-right: 10px;
}
.public-btn2 .public-btn0 i{
    margin-left: 10px;
}
.public-btn2 .public-btn0 span {
    position: relative;
}

.public-btn2 .public-btn0::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    background-color: #ff0000;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-btn2 .public-btn0 {
        min-width: 2rem;
        line-height: 0.76rem;
        border-radius: 0.38rem;
    }
}

.public-btn2 .public-btn0:hover {
    border: 1px solid #ff0000;
    opacity: 0.8;
}

.public-btn2 .public-btn0:hover::before {
    left: 0;
}

.footer {
    position: relative;
    background-color: #040000;
}

.footer .footer1 .container .box1 {
    padding: 0.45rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #525050;
}
.footer .footer1 .container .box1 ul{
    display: flex;
}
.footer .footer1 .container .box1 ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    margin-left: .25rem;
}
.footer .footer1 .container .box1 ul li svg{
    color: #828080;
    transition: all 0.3s;
}
.footer .footer1 .container .box1 ul li i{
    color: #828080;
    font-size: 25px;
    transition: all 0.3s;
}
.footer .footer1 .container .box1 ul li:hover svg{
    color: #ff0000;
}
.footer .footer1 .container .box1 ul li:hover i{
    color: #ff0000;
}
.footer .footer1 .container .box1 .logo img {
    object-fit: cover;
}

.footer .footer1 .container .box1 .cn1 {
    width: 0.49rem;
    height: 0.49rem;
    border-radius: 50%;
    background-color: #ff0000;
    display: flex;
    transition: all 0.5s;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box1 .cn1 {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.footer .footer1 .container .box1 .cn1 img {
    width: 26.53061224%;
}

.footer .footer1 .container .box1 .cn1:hover {
    opacity: 0.8;
}

.footer .footer1 .container .box2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.footer .footer1 .container .box2 .left {
    width: 26.5625%;
    flex-shrink: 0;
}

@media (max-width: 1580px) {
    .footer .footer1 .container .box2 .left {
        width: 31.25%;
    }
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left {
        width: 100%;
    }
}

.footer .footer1 .container .box2 .left .cn2 {
    color: #666;
    line-height: 1.55555556em;
    margin: 0.55rem 0 0.2rem;
}

.footer .footer1 .container .box2 .left .cn2 span {
    color: #ff0000;
}

.footer .footer1 .container .box2 .left form {
    position: relative;
    width: 100%;
}

.footer .footer1 .container .box2 .left input {
    width: 100%;
    line-height: 0.64rem;
    border: 1px solid #ededed;
    border-radius: 0.32rem;
    padding: 0 1.5rem 0 0.25rem;
    background-color: #ededed;
    color: #999999;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left input {
        line-height: 0.76rem;
        border-radius: 0.38rem;
    }
}

.footer .footer1 .container .box2 .left input::placeholder {
    color: #999;
}

.footer .footer1 .container .box2 .left button {
    position: absolute;
    right: 0.02rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.29rem;
    height: 0.6rem;
    border-radius: 0.3rem;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    color: #Fff;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left button {
        height: 0.7rem;
        border-radius: 0.35rem;
        right: 0.05rem;
    }
}

.footer .footer1 .container .box2 .left button:hover {
    opacity: 0.8;
}

.footer .footer1 .container .box2 .left .cn3 {
    margin-top: 0.2rem;
}

.footer .footer1 .container .box2 .left .cn3 .cn4 {
    margin-top: 0.05rem;
    color: #666666;
    line-height: 1.625em;
}

.footer .footer1 .container .box2 .left .cn5 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.24rem;
}

.footer .footer1 .container .box2 .left .cn5 .cn6 {
    position: relative;
    margin-right: 0.16rem;
    margin-top: 0.16rem;
    display: block;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left .cn5 .cn6 {
        margin-right: 0.3rem;
    }
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn7 {
    width: 0.52rem;
    height: 0.52rem;
    background-color: #F5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left .cn5 .cn6 .cn7 {
        width: 0.76rem;
        height: 0.76rem;
    }
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn7 svg {
    height: 0.2rem;
    width: auto;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left .cn5 .cn6 .cn7 svg {
        height: 0.3rem;
    }
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn7 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn8 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    bottom: 100%;
    padding-bottom: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .left .cn5 .cn6 .cn8 {
        left: 0;
        transform: translateX(0);
    }
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn8 .cn9 {
    width: 100px;
    height: 100px;
    border-radius: 0.1rem;
    background-color: #Fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.footer .footer1 .container .box2 .left .cn5 .cn6 .cn8 .cn9 img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.footer .footer1 .container .box2 .left .cn5 .cn6:hover .cn7 {
    background-color: #ff0000;
}

.footer .footer1 .container .box2 .left .cn5 .cn6:hover .cn7 svg path {
    fill: #Fff;
}

.footer .footer1 .container .box2 .left .cn5 .cn6:hover .cn8 {
    opacity: 1;
    visibility: visible;
}

.footer .footer1 .container .box2 .right {
    padding-top: 0.55rem;
}

@media (max-width: 991px) {
    .footer .footer1 .container .box2 .right {
        display: none;
    }
}

.footer .footer1 .container .box2 .right .cn8 {
    display: flex;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 {
    margin-right: .8rem;
}



.footer .footer1 .container .box2 .right .cn8 .cn9 .cn10 .cn10a {
    font-size: .2rem;
    font-family: "Futura-Heavy";
    color: #ff0000;
    transition: all 0.5s;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn10 .cn10a:hover {
    color: #ff0000;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 {
    margin-top: 0.2rem;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 .cn12 {
    margin-top: 0.15rem;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 .cn12 .cn13 {
    color: #ffffff;
    font-size: .18rem;
    font-family: "Futura-Book";
    position: relative;
    transition: all 0.5s;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 .cn12 .cn13::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.03rem;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: all 0.5s;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 .cn12 .cn13:hover {
    color: #ff0000;
}

.footer .footer1 .container .box2 .right .cn8 .cn9 .cn11 .cn12 .cn13:hover::before {
    width: 100%;
}

.footer .footer2 {
    /*border-top: 1px solid #525050;*/
}
.footer .container{
    width: 90%;
    max-width: 100%;
}
.footer .footer2 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #525050;
}

.footer .footer2 .container .left {
    padding: 0.45rem 0;
}
.footer .footer2 .container .left ul{
    display: flex;
}
.footer .footer2 .container .left ul li{
    margin-right: .12rem;
}
@media (max-width: 991px) {
    .footer .footer2 .container .left {
        width: 100%;
        text-align: center;
    }
}

.footer .footer2 .container .left .cn1 {
    line-height: 1.625em;
    color: #999999;
}

.footer .footer2 .container .left .cn1 a {
    margin-left: 0.2rem;
    color: #999;
    transition: all 0.5s;
}

.footer .footer2 .container .left .cn1 a:hover {
    color: #ff0000;
}

.footer .footer2 .container .right {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .footer .footer2 .container .right {
        padding: 0 0 0.25rem;
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.footer .footer2 .container .right .cn2 {
    color: #918c8a;
    font-size: 14px;
    font-family: "Futura-Book";
    transition: all 0.5s;
}
.footer .footer2 .container .right p{
    color: #918c8a;
    font-size: 14px;
    font-family: "Futura-Book";
}

.footer .footer2 .container .right .cn2:hover {
    color: #ff0000;
}

.public-topsearch {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}

.public-topsearch::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.public-topsearch .box1 {
    position: relative;
    background-color: #Fff;
    padding-top: 0.1rem;
}

.public-topsearch .box1 .container .box2 {
    position: relative;
}

.public-topsearch .box1 .container .box2 input {
    width: 100%;
    line-height: 0.9rem;
    border-bottom: 1px solid #e5e5e5;
    color: #999999;
    padding: 0 1rem 0 0;
}

.public-topsearch .box1 .container .box2 input::placeholder {
    color: #999;
}

.public-topsearch .box1 .container .box2 button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.public-topsearch .box1 .container .box2 button svg {
    width: 20px;
    height: 20px;
}

.public-topsearch .box1 .container .box2 button svg path {
    transition: all 0.5s;
    fill: #666;
    opacity: 1;
    stroke: none;
}

.public-topsearch .box1 .container .box2 button:hover svg path {
    fill: #ff0000;
}

.public-topsearch .box1 .container .box3 {
    padding: 0.3rem 0;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.public-topsearch .box1 .container .box3 .cn2 {
    padding: 0.1rem 0;
    color: #333333;
    line-height: 1.625em;
}

.public-topsearch .box1 .container .box3 .cn3 {
    padding: 0.1rem 0;
    color: #999999;
    line-height: 1.625em;
    position: relative;
    transition: all 0.5s;
}

.public-topsearch .box1 .container .box3 .cn3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 0;
    height: 1px;
    background-color: #ff0000;
    transition: all 0.5s;
}

.public-topsearch .box1 .container .box3 .cn3:hover {
    color: #ff0000;
}

.public-topsearch .box1 .container .box3 .cn3:hover::before {
    width: 100%;
}

.public-topsearch .box1 .container .box3 .cn4 {
    margin: 0 0.15rem;
    width: 1px;
    height: 0.15rem;
    background-color: #000;
    opacity: 0.2;
}

.public-topsearch .hi-close {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.public-topsearch .hi-close:after,
.public-topsearch .hi-close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
    background: #333;
    transition: 0.3s;
}

.public-topsearch .hi-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.public-topsearch .hi-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.public-topsearch .hi-close:hover {
    background: #ff0000;
}

.public-topsearch .hi-close:hover:after,
.public-topsearch .hi-close:hover:before {
    background: #fff;
}

.public-toplanguage {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}

.public-toplanguage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.public-toplanguage .box1 {
    position: relative;
    background-color: #Fff;
    padding: 0.2rem 0 0.5rem;
}

.public-toplanguage .box1 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.public-toplanguage .public-btn {
    margin: 0.3rem 0.2rem 0;
}

.public-toplanguage .public-btn .public-btn0 {
    background-color: #999;
}

.public-toplanguage .public-btn .public-btn0.on {
    background-color: #ff0000;
}

.public-toplanguage .public-btn .public-btn0:hover {
    background-color: #ff0000;
}

.public-toplanguage .hi-close {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.public-toplanguage .hi-close:after,
.public-toplanguage .hi-close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
    background: #333;
    transition: 0.3s;
}

.public-toplanguage .hi-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.public-toplanguage .hi-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.public-toplanguage .hi-close:hover {
    background: #ff0000;
}

.public-toplanguage .hi-close:hover:after,
.public-toplanguage .hi-close:hover:before {
    background: #fff;
}

.public-windows {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}

.public-windows::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.public-windows .box {
    width: 12rem;
    min-height: 7.2rem;
    max-width: 90%;
    max-height: 80%;
    background-color: #Fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.2rem;
    display: flex;
    overflow: auto;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .public-windows .box {
        max-height: 85%;
    }
}

.public-windows .box .close {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    cursor: pointer;
}

.public-windows .box .close img {
    width: 0.2rem;
    height: 0.2rem;
    transition: all 0.5s;
}

.public-windows .box .close svg {
    width: 0.2rem;
    height: 0.2rem;
}

.public-windows .box .close svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.public-windows .box .close:hover img {
    transform: rotate(180deg);
}

.public-windows .box .close:hover svg path {
    fill: #ff0000;
}

.public-windows .box .left {
    width: 36.66666667%;
    display: flex;
    flex-direction: column;
    background-color: #ff0000;
    padding: 0.25rem 0.4rem 0.6rem;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .public-windows .box .left {
        display: none;
        width: 100%;
    }
}

.public-windows .box .left .bgimg {
    position: absolute;
    right: -2.9rem;
    bottom: -1rem;
}

.public-windows .box .left .bgimg img {
    max-width: initial;
    width: 6rem;
}

.public-windows .box .left .leftbox1 {
    position: relative;
}

.public-windows .box .left .cn1 img {
    width: 1.93rem;
    height: 0.47rem;
}

.public-windows .box .left .cn2 {
    padding-top: 0.7rem;
    color: #ffffff;
    line-height: 1.33333333em;
    position: relative;
}

.public-windows .box .left .cn2::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0.4rem;
    height: 0.03rem;
    background-color: #f6f6f6;
    top: 0.5rem;
}

.public-windows .box .left .leftbox2 {
    position: relative;
}

.public-windows .box .left .leftbox2 .cn3 .cn4 {
    color: #ffffff;
    line-height: 2em;
}

.public-windows .box .left .leftbox2 .cn5 {
    margin-top: 0.4rem;
}

.public-windows .box .left .leftbox2 .cn5 .cn6 {
    margin-right: 0.2rem;
    line-height: 1.625em;
    color: #Fff;
    text-decoration: underline;
}

.public-windows .box .right {
    width: 63.33333333%;
    padding: 0.3rem 0.6rem 0.3rem 0.5rem;
    overflow: auto;
}

@media (max-width: 991px) {
    .public-windows .box .right {
        width: 100%;
    }
}

.public-windows .box .right .cn7 {
    color: #000000;
    line-height: 1.41666667em;
}

.public-windows .box .right .cn8 {
    margin-top: 0.1rem;
    color: #666666;
    line-height: 1.5em;
}

.public-windows .box .right .cn9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.public-windows .box .right .cn9 .cn10 {
    margin-top: 0.25rem;
    width: 48%;
    position: relative;
    background-color: #F6f6f6;
    border-radius: 0.1rem;
}

@media (max-width: 991px) {
    .public-windows .box .right .cn9 .cn10 {
        width: 100%;
    }
}

.public-windows .box .right .cn9 .cn10.cn20 {
    position: relative;
    z-index: 3;
}

.public-windows .box .right .cn9 .cn10.cn20 .cn11 input::placeholder {
    color: transparent;
}

.public-windows .box .right .cn9 .cn10.cn13 {
    width: 100%;
}

.public-windows .box .right .cn9 .cn10.cn13 .cn12 {
    top: 0;
    transform: translateY(0);
    line-height: 0.58rem;
}

.public-windows .box .right .cn9 .cn10 .cn11 {
    width: 100%;
    position: relative;
    z-index: 2;
}

.public-windows .box .right .cn9 .cn10 .cn11 select {
    height: 0.58rem;
    border: 0;
    padding: 0 0.25rem;
    width: 100%;
    line-height: 0.58rem;
    color: #696969;
}

@media (max-width: 991px) {
    .public-windows .box .right .cn9 .cn10 .cn11 select {
        height: 0.76rem;
        line-height: 0.76rem;
    }
}

.public-windows .box .right .cn9 .cn10 .cn11 input {
    background-color: transparent;
    padding: 0 0.25rem;
    width: 100%;
    line-height: 0.58rem;
    color: #696969;
    height: 0.58rem;
    border: 0;
}

@media (max-width: 991px) {
    .public-windows .box .right .cn9 .cn10 .cn11 input {
        height: 0.76rem;
        line-height: 0.76rem;
    }
}

.public-windows .box .right .cn9 .cn10 .cn11 textarea {
    padding: 0 0.25rem;
    width: 100%;
    height: 1rem;
    line-height: 0.58rem;
    color: #696969;
}

@media (max-width: 991px) {
    .public-windows .box .right .cn9 .cn10 .cn11 textarea {
        line-height: 0.76rem;
    }
}

.public-windows .box .right .cn9 .cn10 .cn11 .layui-select-tips {
    display: none;
}

.public-windows .box .right .cn9 .cn10 .cn11 .layui-anim {
    z-index: 2;
    top: 0.58rem;
}

@media (max-width: 991px) {
    .public-windows .box .right .cn9 .cn10 .cn11 .layui-anim {
        top: 0.76rem;
    }
}

.public-windows .box .right .cn9 .cn10 .cn12 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    color: #696969;
    padding: 0 0.25rem;
}

.public-windows .box .right .cn9 .cn10 .cn12 span {
    position: absolute;
    left: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff0000;
}

.public-windows .box .right .cn9 .cn14 {
    line-height: 1.5em;
    color: #999;
    margin: 0.25rem 0 0.4rem;
}

.service-box1 {
    z-index: 30;
    overflow: hidden;
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    height: 1rem;
    margin-top: -0.45rem;
}

@media (max-width: 991px) {
    .service-box1 {
        background-color: #Fff;
    }
}

.service-box1.on2 .box1 .cn1 {
    transition-delay: 0s !important;
}

.service-box1 .container {
    position: relative;
}

.service-box1 .bgimg {
    right: 100%;
    transition: all 1s;
    top: 0;
    position: absolute;
    width: 100vw;
    background-color: #fff;
    height: 0.9rem;
    border-radius: 0 0.45rem 0.45rem 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .service-box1 .bgimg {
        height: 1rem;
        border-bottom: 0 !important;
        box-shadow: initial !important;
    }
}

.service-box1 .box1 {
    display: flex;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .service-box1 .box1 {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.service-box1 .box1 .cn1 {
    white-space: nowrap;
    color: #666666;
    line-height: 0.9rem;
    margin-right: 0.8rem;
    position: relative;
    opacity: 0;
    transform: translateY(0.6rem);
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .service-box1 .box1 .cn1 {
        line-height: 1rem;
        margin-right: 0.4rem;
    }
}

.service-box1 .box1 .cn1:nth-child(1) {
    transition-delay: 1s;
}

.service-box1 .box1 .cn1:nth-child(2) {
    transition-delay: 1.15s;
}

.service-box1 .box1 .cn1:nth-child(3) {
    transition-delay: 1.3s;
}

.service-box1 .box1 .cn1:nth-child(4) {
    transition-delay: 1.45s;
}

.service-box1 .box1 .cn1:nth-child(5) {
    transition-delay: 1.6s;
}

.service-box1 .box1 .cn1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.03rem;
    background-color: #ff0000;
    transition: all 0.5s;
}

.service-box1 .box1 .cn1.on {
    color: #ff0000;
}

.service-box1 .box1 .cn1.on::before {
    width: 100%;
}

.service-box1.on .bgimg {
    right: 0;
}

.service-box1.on .box1 .cn1 {
    opacity: 1;
    transform: translateY(0);
}

.service-box2 {
    padding: 1.6rem 0 1.2rem;
    width: 100%;
    background-color: #F8f8f8;
    margin-top: -0.5rem;
}

.service-box2 .container {
    display: flex;
    flex-wrap: wrap;
}

.service-box2 .container .left {
    width: 50%;
}

@media (max-width: 991px) {
    .service-box2 .container .left {
        width: 100%;
    }
}

.service-box2 .container .left .cn1 {
    line-height: 1.3125em;
    letter-spacing: -1px;
    color: #000000;
}

.service-box2 .container .left .cn2 {
    width: 75%;
    color: #666666;
    line-height: 1.75em;
    margin: 0.2rem 0 0.8rem;
}

@media (max-width: 991px) {
    .service-box2 .container .left .cn2 {
        width: 100%;
    }
}

.service-box2 .container .left .cn3 .cn4 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.service-box2 .container .left .cn3 .cn4 .cn5 {
    width: 0.4rem;
    height: 0.4rem;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .service-box2 .container .left .cn3 .cn4 .cn5 {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.service-box2 .container .left .cn3 .cn4 .cn5 img {
    max-width: 50%;
}

.service-box2 .container .left .cn3 .cn4 .cn6 {
    margin-left: 0.15rem;
    color: #000000;
    line-height: 0.4rem;
}

@media (max-width: 991px) {
    .service-box2 .container .left .cn3 .cn4 .cn6 {
        line-height: 0.45rem;
        width: 100%;
        margin-top: 0.3rem;
        margin-left: 0;
    }
}

.service-box2 .container .right {
    width: 50%;
}

@media (max-width: 991px) {
    .service-box2 .container .right {
        margin-top: 0.5rem;
        width: 100%;
    }
}

.service-box2 .container .right .img {
    border-radius: 0.2rem;
}

.service-box2 .container .right .img::before {
    padding-top: 52.5%;
}

.service-box2 .container .right .img:hover img {
    transform: scale(1.05);
}

.service-box3 {
    padding-bottom: 1.3rem;
    background-color: #f8f8f8;
}

.service-box3 .container .line {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    position: relative;
}

.service-box3 .container .line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background-color: #ff0000;
}

.service-box3 .container .cn1 {
    padding-top: 0.95rem;
    color: #000;
    line-height: 1.3125em;
}

.service-box3 .container .sevicebox3swiper {
    margin-top: 0.55rem;
    position: relative;
    overflow: hidden;
}

.service-box3 .container .sevicebox3swiper .swiper-slide {
    height: auto;
    border-radius: 0.2rem;
    background-color: #fff;
    padding: 0.8rem 0.3rem 0.5rem;
}

.service-box3 .container .sevicebox3swiper .swiper-slide .img {
    text-align: center;
    height: 0.6rem;
}

.service-box3 .container .sevicebox3swiper .swiper-slide .img img {
    height: 0.6rem;
}

.service-box3 .container .sevicebox3swiper .swiper-slide .line2 {
    width: 0.27rem;
    height: 0.05rem;
    background-color: #ff0000;
    border-radius: 0.02rem;
    margin: 0.4rem auto 0.35rem;
}

.service-box3 .container .sevicebox3swiper .swiper-slide .cn2 {
    text-align: center;
    line-height: 1.5em;
    color: #000000;
}

.service-box3 .container .sevicebox3swiper .swiper-slide .cn3 {
    margin-top: 0.2rem;
    line-height: 1.625em;
    text-align: center;
    color: #666666;
}

.service-box3 .container .sevicebox3swiper .publicswiper-page {
    margin-top: 0.4rem;
}

.publicswiper-page {
    text-align: center;
}

.publicswiper-page .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #000000;
    opacity: 0.2;
    margin: 0 5px;
    transition: all 0.5s;
}


.publicswiper-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 40px;
    background-color: #ff0000;
    opacity: 1;
}



.service-box4 {
    position: relative;
    padding-top: 1.4rem;
    overflow: hidden;
}

@media (max-width: 991px) {
    .service-box4 {
        padding: 1.2rem 0;
    }
}

.service-box4.service-box4a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.service-box4.service-box4a .service-box5 {
    background-image: initial;
    background-color: #fff;
    padding-top: 2.15rem;
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .service-box4.service-box4a .service-box5 {
        padding-top: 0;
        display: none;
    }
}

.service-box4 .container {
    display: flex;
    flex-wrap: wrap;
}

.service-box4 .container .left {
    width: 50%;
}

@media (max-width: 991px) {
    .service-box4 .container .left {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 100%;
    }
}

.service-box4 .container .left .cn1 {
    color: #666666;
    line-height: 1.5em;
}

.service-box4 .container .left .cn2 {
    color: #000000;
    line-height: 1.38461538em;
    width: 80%;
    margin: 0.1rem 0 0.4rem;
}

@media (max-width: 991px) {
    .service-box4 .container .left .cn2 {
        width: 100%;
    }
}

.service-box4 .container .left .cn3 {
    width: 1.15rem;
}

.service-box4 .container .right {
    width: 50%;
}

@media (max-width: 991px) {
    .service-box4 .container .right {
        width: 100%;
        margin-top: 1rem;
    }
}

.service-box4 .container .right .cn9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-box4 .container .right .cn9 .cn10 {
    margin-bottom: 0.6rem;
    width: 48%;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.service-box4 .container .right .cn9 .cn10.cn20 {
    position: relative;
    z-index: 3;
}

.service-box4 .container .right .cn9 .cn10.cn13 {
    width: 100%;
}

.service-box4 .container .right .cn9 .cn10.cn13 .cn12 {
    top: 0;
    transform: translateY(0);
    line-height: 0.58rem;
}

.service-box4 .container .right .cn9 .cn10 .cn11 {
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-box4 .container .right .cn9 .cn10 .cn11 select {
    height: 0.58rem;
    border: 0;
    padding: 0 0.25rem;
    width: 100%;
    line-height: 0.58rem;
    color: #696969;
}

@media (max-width: 991px) {
    .service-box4 .container .right .cn9 .cn10 .cn11 select {
        height: 0.76rem;
        line-height: 0.76rem;
    }
}

.service-box4 .container .right .cn9 .cn10 .cn11 input {
    background-color: transparent;
    padding: 0;
    width: 100%;
    line-height: 0.58rem;
    color: #696969;
    height: 0.58rem;
    border: 0;
}

@media (max-width: 991px) {
    .service-box4 .container .right .cn9 .cn10 .cn11 input {
        height: 0.76rem;
        line-height: 0.76rem;
    }
}

.service-box4 .container .right .cn9 .cn10 .cn11 textarea {
    padding: 0;
    width: 100%;
    height: 2.6rem;
    line-height: 0.58rem;
    color: #696969;
}

.service-box4 .container .right .cn9 .cn10 .cn11 .layui-select-tips {
    display: none;
}

.service-box4 .container .right .cn9 .cn10 .cn11 .layui-anim {
    z-index: 2;
    top: 0.58rem;
}

@media (max-width: 991px) {
    .service-box4 .container .right .cn9 .cn10 .cn11 .layui-anim {
        top: 0.76rem;
    }
}

.service-box4 .container .right .cn9 .cn15 {
    margin-top: 0.8rem;
}

@media (max-width: 991px) {
    .service-box4 .container .right .cn9 .cn15 {
        margin-top: 0;
    }
}

.service-box5 {
    padding-top: 2rem;
    padding-bottom: 1.6rem;
    background-image: linear-gradient(#fff, #f8f8f8);
    position: relative;
}

@media (max-width: 991px) {
    .service-box5 {
        padding: 1.6rem 0;
    }
}

.service-box5 .bgimg {
    position: absolute;
    left: -2rem;
    top: -0.7rem;
    opacity: 0;
}

@media (max-width: 991px) {
    .service-box5 .bgimg {
        display: none;
    }
}

.service-box5 .bgimg img {
    height: 7.53rem;
}

.service-box5 .bgimg.on {
    opacity: 1;
    left: 0;
    top: -2.7rem;
}

.service-box5 .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-box5 .container .box1 {
    width: 49.375%;
    position: relative;
}

@media (max-width: 991px) {
    .service-box5 .container .box1 {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.service-box5 .container .box1.box2 {
    transform: translateY(1.4rem);
}

@media (max-width: 991px) {
    .service-box5 .container .box1.box2 {
        margin-top: 0.5rem;
        transform: translateY(0) !important;
    }
}

.service-box5 .container .box1 .img {
    position: relative;
    border-radius: 0.2rem;
}

.service-box5 .container .box1 .img::before {
    padding-top: 60.75949367%;
}

.service-box5 .container .box1 .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.service-box5 .container .box1 .cn1 {
    position: absolute;
    left: 0;
    bottom: 0.55rem;
    width: 100%;
    z-index: 5;
    padding: 0 1rem 0 0.6rem;
}

.service-box5 .container .box1 .cn1 .cn2 {
    color: #ffffff;
    line-height: 1.3125em;
}

.service-box5 .container .box1 .cn1 .cn3 {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625em;
}

.service-box5 .container .box1 .cn4 {
    transition: all 0.5s;
    z-index: 6;
    position: absolute;
    right: 0.5rem;
    bottom: 0.6rem;
}

.service-box5 .container .box1 .cn4 img {
    width: 0.32rem;
    height: 0.32rem;
    transform: rotate(-45deg);
    transition: all 0.5s;
}

.service-box5 .container .box1:hover .img img {
    transform: scale(1.05);
}

.service-box5 .container .box1:hover .cn4 img {
    transform: rotate(-90deg);
}

.download-list {
    padding: 0.8rem 0 1.3rem;
    background-color: #f8f8f8;
}

.download-list .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.download-list .container .left {
    position: sticky;
    left: 0;
    top: 1.1rem;
    width: 20.375%;
}

@media (max-width: 991px) {
    .download-list .container .left {
        position: relative;
        width: 100%;
        top: 0;
    }
}

.download-list .container .left .leftbox {
    cursor: pointer;
}

.download-list .container .left .leftbox.tebie.on2 .cn1 svg {
    transform: translateY(-50%) rotate(90deg);
}

.download-list .container .left .leftbox .cn1 {
    border-top: 1px solid #e5e5e5;
    line-height: 0.76rem;
    display: flex;
    align-items: center;
    color: #333333;
    transition: all 0.5s;
    position: relative;
}

@media (max-width: 991px) {
    .download-list .container .left .leftbox .cn1 {
        line-height: 0.9rem;
        font-size: 0.32rem;
    }
}

.download-list .container .left .leftbox .cn1 svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.download-list .container .left .leftbox .cn1 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .left .leftbox .cn2 {
    display: none;
}

.download-list .container .left .leftbox .cn2 .cn3 {
    margin-bottom: 0.15rem;
}

.download-list .container .left .leftbox .cn2 .cn3.on .cn4 .cn5 {
    background-color: #ff0000;
    border: 1px solid #ff0000;
}

.download-list .container .left .leftbox .cn2 .cn3.on .cn4 .cn5 img {
    opacity: 1;
}

.download-list .container .left .leftbox .cn2 .cn3.on .cn4 .cn6 {
    color: #333;
}

.download-list .container .left .leftbox .cn2 .cn3.on .cn4 .cn7 svg {
    transform: rotate(90deg);
}

.download-list .container .left .leftbox .cn2 .cn3.on .cn4 .cn7 svg path {
    fill: #ff0000;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 {
    display: flex;
    position: relative;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn5 {
    transition: all 0.5s;
    width: 20px;
    height: 20px;
    background-color: #ededed;
    border-radius: 0.04rem;
    border: 1px solid #ccc;
    flex-shrink: 0;
    margin-right: 0.15rem;
    position: relative;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn5 img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    opacity: 0;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn6 {
    color: #666666;
    line-height: 20px;
    transition: all 0.5s;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn7 {
    transition: all 0.5s;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn7 svg {
    transition: all 0.5s;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn4 .cn7 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 {
    display: none;
    background-color: #Fff;
    border-radius: 0.1rem;
    padding: 0.24rem;
    margin-top: 0.24rem;
    margin-bottom: 0.24rem;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9 {
    display: flex;
    position: relative;
    margin-bottom: 0.1rem;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9:last-child {
    margin-bottom: 0;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn10 {
    width: 20px;
    height: 20px;
    background-color: #ededed;
    border-radius: 0.04rem;
    border: 1px solid #ccc;
    flex-shrink: 0;
    margin-right: 0.15rem;
    position: relative;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn10 img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    opacity: 0;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn11 {
    color: #666666;
    line-height: 20px;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn10 {
    background-color: #ff0000;
    border: 1px solid #ff0000;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn10 img {
    opacity: 1;
}

.download-list .container .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn11 {
    color: #333;
}

.download-list .container .left .leftbox.on .cn1 {
    color: #ff0000;
}

.download-list .container .left .leftbox.on .cn1 svg path {
    fill: #ff0000;
}

.download-list .container .right {
    width: 73.75%;
}

@media (max-width: 991px) {
    .download-list .container .right {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.download-list .container .right .rightbox1 {
    background-color: #Fff;
    border-radius: 0.2rem;
    padding: 0.25rem 0.6rem 0.3rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox1 {
        padding: 0.1rem 0.3rem 0.3rem;
    }
}

.download-list .container .right .rightbox1 form {
    position: relative;
}

.download-list .container .right .rightbox1 input {
    line-height: 0.55rem;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    color: #999999;
    padding: 0 1rem 0 0;
    position: relative;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox1 input {
        line-height: 0.76rem;
    }
}

.download-list .container .right .rightbox1 input::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ff0000;
    transition: all 0.5s;
}

.download-list .container .right .rightbox1 input::placeholder {
    color: #999;
}

.download-list .container .right .rightbox1 button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.download-list .container .right .rightbox1 button svg path {
    fill: #ccc;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .right .rightbox1 button:hover svg path {
    fill: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 {
    margin-top: 0.3rem;
    display: none;
    background-color: #ffffff;
    border-radius: 0.2rem;
    padding: 0.45rem 0.6rem 0.7rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 {
        padding: 0.7rem 0.3rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3.on {
    display: block;
}

.download-list .container .right .rightbox2 .rightbox3 .cn1 {
    line-height: 1.3125em;
    color: #111;
    padding-bottom: 0.35rem;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 {
    display: flex;
    align-items: center;
    padding: 0 0.35rem;
    border-top: 1px solid #e5e5e5;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 {
        border-top: 1px solid #e5e5e5 !important;
        padding: 0;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3:hover {
    border-radius: 0.1rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3:hover {
        border-radius: 0;
        box-shadow: initial;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3:hover .cn4 {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4 {
    width: 100%;
    line-height: 0.8rem;
    color: #666666;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4 {
        font-size: 0.32rem;
        line-height: 1rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 {
    margin-left: 0.55rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #999999;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 {
        margin-left: 0.25rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg {
    width: 0.21rem;
    margin-right: 0.08rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg {
        width: 0.3rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover svg path {
    fill: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover .yuan {
    border: 1px solid #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover .yuan em {
    background-color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan {
    width: 18px;
    height: 18px;
    border: 1px solid #333;
    position: relative;
    border-radius: 50%;
    margin-left: 0.08rem;
    transition: all 0.5s;
}

@media (max-width: 1580px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan {
        width: 16px;
        height: 16px;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em {
    transition: all 0.5s;
    background-color: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(1) {
    width: 10px;
    height: 1px;
}

@media (max-width: 1580px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(1) {
        width: 8px;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(2) {
    width: 1px;
    height: 10px;
}

@media (max-width: 1580px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(2) {
        height: 8px;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan {
    border: 1px solid #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan em {
    background-color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan em:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 {
    margin-left: 0.55rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #999999;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 {
        margin-left: 0.25rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg {
    width: 0.21rem;
    margin-right: 0.08rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg {
        width: 0.3rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6:hover {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6:hover svg path {
    fill: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn10 {
    text-align: center;
    color: #999;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn11 .cn3 {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn11 .cn3 .cn4 {
        padding: 0.1rem 0;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
    margin-left: 1.1rem;
}

@media (max-width: 1580px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
        margin-left: 0.55rem;
    }
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
        margin-left: 0;
        margin-right: 0.25rem;
        margin-bottom: 0.25rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn11.on .cn3 {
    border-top: 1px solid transparent;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 {
    padding: 0.2rem 0.35rem;
    border-radius: 0.1rem;
    background-color: #F8f8f8;
    margin-bottom: 0.4rem;
    display: none;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn13 {
    color: #111;
    line-height: 1.625em;
    padding-bottom: 0.15rem;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 {
    display: flex;
    border-top: 1px solid #ededed;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15:hover .cn16 {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn16 {
    transition: all 0.5s;
    width: 100%;
    line-height: 0.8rem;
    color: #666666;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn16 {
        line-height: 1rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 {
    margin-left: 0.55rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #999999;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 {
        margin-left: 0.25rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg {
    width: 0.21rem;
    margin-right: 0.08rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg {
        width: 0.3rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17:hover {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17:hover svg path {
    fill: #ff0000;
}

.download-list .container .right .rightbox2 .cn30 {
    color: #666;
    line-height: 1.625em;
    padding-bottom: 0.25rem;
}

.download-list .container .right .rightbox2 .cn30 span {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 {
    padding: 0.35rem 0;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4a {
    color: #111111;
    line-height: 1.45454545em;
    transition: all 0.5s;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.05rem;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c {
    color: #999999;
    line-height: 1.625em;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c em {
    font-style: normal;
    color: #999999;
    margin: 0 0.05rem;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c:last-child em {
    display: none;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 {
    color: #333333 !important;
    margin-left: 2.4rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5.renzhengbutton {
        margin-left: auto;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 img {
    width: 0.17rem;
    margin-right: 0.05rem;
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 img {
        width: 0.3rem;
        margin-right: 0.1rem;
    }
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 {
        margin-left: 0;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 .yuan {
    margin-left: 0;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn3 .cn4 .cn4a {
    color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn5 .yuan {
    border: 1px solid #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn5 .yuan em {
    background-color: #ff0000;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 {
    padding: 0.2rem 0.35rem 0.4rem;
    margin-bottom: 0;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a {
    color: #666666;
    line-height: 2em;
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
    font-weight: bold;
    font-size: 18px;
    color: #111111;
    line-height: 2em;
}

@media (max-width: 1580px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
        font-size: 16px;
    }
}

@media (max-width: 1260px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
        font-size: 0.28rem;
    }
}

.download-list .container .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .public-btn {
    margin-top: 0.4rem;
}

.public-banner2 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.public-banner2 .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.public-banner2 .swiper-wrapper .swiper-slide .img {
    position: relative;
    width: 100%;
    height: 100%;
}

.public-banner2 .swiper-wrapper .swiper-slide .img video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .public-banner2 .swiper-wrapper .swiper-slide .img video {
        /*display: none;*/
    }
}

.public-banner2 .swiper-wrapper .swiper-slide .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerscale 20s infinite linear;
}

@media (max-width: 991px) {
    .public-banner2 .swiper-wrapper .swiper-slide .img img.pc-img {
        display: none;
    }
}

.public-banner2 .swiper-wrapper .swiper-slide .img img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .public-banner2 .swiper-wrapper .swiper-slide .img img.mb-img {
        display: block;
    }
}

.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn1 {
    opacity: 1;
    transform: translateY(0);
}

.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn2 {
    opacity: 1;
    transform: translateY(0);
}

.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn15 {
    opacity: 1;
    transform: translateY(0);
}

.public-banner2 .containerpublic {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    z-index: 3;
}

@media (max-width: 991px) {
    .public-banner2 .containerpublic {
        top: 1.2rem;
    }
}

.public-banner2 .textcontainer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.public-banner2 .textcontainer .cn1 {
    text-align: left;
    color: #ffffff;
    font-size: .65rem;
    opacity: 0;
    transition: all 0.5s;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateY(0.6rem);
}

.public-banner2 .textcontainer .cn2 {
    margin-top: 15px;
    color: #ffffff;
    text-align: left;
    font-size: .24rem;
    opacity: 0;
    transition: all 0.5s 0.25s;
    font-family: 'Futura-medium-Italic';
    transform: translateY(0.6rem);
}

.public-banner2 .textcontainer .cn2 span {
    color: #ff0000;
}

.public-banner2 .textcontainer .cn15 {
    margin-top: 0.65rem;
    opacity: 0;
    transition: all 0.5s 0.5s;
    transform: translateY(0.6rem);
}

.public-banner2 .textcontainer.blackcolor .cn1 {
    color: #000;
}

.public-banner2 .textcontainer.blackcolor .cn2 {
    color: #000;
}

.public-banner2 .textcontainer.blackcolor .cn15 .public-btn0 {
    border: 1px solid #000;
    color: #000;
}

.public-banner2 .textcontainer.blackcolor .cn15 .public-btn0:hover {
    border: 1px solid #ff0000;
    color: #Fff;
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet {
    position: relative;
    overflow: hidden;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}
.public-banner2 .publicbanner2page .swiper-pagination-bullet:last-child{
    margin-bottom: 0;
}
.public-banner2 .publicbanner2page .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    /*bottom: 0;*/
    width: 100%;
    height: 0;
    background-color: #fff;
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.4);
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: bannerjindu 4s 1 linear forwards;
}

@keyframes bannerjindu {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes bannerscale {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.publicbanner2page {
    display: flex;
    flex-flow: column;
    position: absolute;
    right: 0!important;
    left: auto!important;
    bottom: 0!important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px!important;
    height: max-content;
}

.publicbanner2page .swiper-pagination-bullet {
    background-color: #Fff;
    opacity: 0.4;
}

.publicbanner2page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff0000;
}

.index-about {
    width: 100%;
    height: 240vh;
    background-color: #Fff;
    position: relative;
}

.index-about .index-about0 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    left: 0;
    top: 0;
}

.index-about .index-about0 .zcn2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    width: 100%;
    justify-content: center;
}

.index-about .index-about0 .zcn2 img {
    margin-right: 0.1rem;
}

.index-about .index-about0 .texbox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.index-about .index-about0 .texbox .container {
    position: relative;
    height: 100vh;
}

.index-about .index-about0 .texbox .container .tcn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18.75%;
}

@media (max-width: 991px) {
    .index-about .index-about0 .texbox .container .tcn1 {
        left: 10%;
    }
}

@media (max-width: 767px) {
    .index-about .index-about0 .texbox .container .tcn1 {
        top: 30%;
        left: 5%;
    }
}

.index-about .index-about0 .texbox .container .tcn1 img {
    width: 3.17rem;
}

.index-about .index-about0 .texbox .container .tcn1 span {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 100%;
    line-height: 1.27777778em;
    margin-top: 0.15rem;
}

.index-about .index-about0 .texbox .container .tcn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18.75%;
}

@media (max-width: 991px) {
    .index-about .index-about0 .texbox .container .tcn2 {
        right: 10%;
    }
}

@media (max-width: 767px) {
    .index-about .index-about0 .texbox .container .tcn2 {
        right: 5%;
        top: 70%;
    }
}

.index-about .index-about0 .texbox .container .tcn2 img {
    width: 3.56rem;
}

.index-about .index-about0 .texbox .container .tcn2 span {
    text-align: right;
    width: 100%;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 100%;
    line-height: 1.27777778em;
    margin-top: 0.15rem;
}

.index-about .index-about0 .picbox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-about .index-about0 .picbox .line {
    width: 2px;
    height: 40%;
    transform: rotate(45deg);
    background-color: #ff0000;
}

@media (max-width: 991px) {
    .index-about .index-about0 .picbox .line {
        max-height: 60%;
    }
}

.index-about .index-about0 .picbox .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    opacity: 0;
    border-radius: 20px;
    overflow: hidden;
}

.index-about .index-about0 .picbox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-about .index-about0 .picbox .img video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
}

@media (max-width: 991px) {
    .index-about .index-about0 .picbox .img video {
        display: none;
    }
}

.index-about .index-about0 .aboutbox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.index-about .index-about0 .aboutbox .container {
    padding: 11vh 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .index-about .index-about0 .aboutbox .container {
        padding: 11vh 0 5vh;
    }
}

.index-about .index-about0 .aboutbox .container .box1 .publicindextitle .pcn1 {
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0s;
    opacity: 0;
    display: none;
}

.index-about .index-about0 .aboutbox .container .box1 .publicindextitle .pcn2 {
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
    opacity: 0;
    display: none;
}

@media (max-width: 991px) {
    .index-about .index-about0 .aboutbox .container .box1 .publicindextitle .pcn2 {
        display: none !important;
    }
}

.index-about .index-about0 .aboutbox .container .box1 .publicindextitle .mbpcn2 {
    color: #Fff;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
    opacity: 0;
    display: none;
    height: 0;
    visibility: hidden;
}

@media (max-width: 991px) {
    .index-about .index-about0 .aboutbox .container .box1 .publicindextitle .mbpcn2 {
        height: auto;
        visibility: visible;
    }
}

.index-about .index-about0 .aboutbox .container .box1 .publicindextitle .pcn3 {
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
    opacity: 0;
    display: none;
}

.index-about .index-about0 .aboutbox .container .box2 {
    opacity: 0;
    transform: all 0.5s 1s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-about .index-about0 .aboutbox .container .box2 .box2a {
    max-width: 24%;
}

@media (max-width: 991px) {
    .index-about .index-about0 .aboutbox .container .box2 .box2a {
        max-width: initial;
        width: 50%;
        padding: 0.3rem;
    }
}

.index-about .index-about0 .aboutbox .container .box2 .box2a .box2b {
    display: flex;
    align-items: center;
    color: #ffffff;
    justify-content: center;
    font-size: 0.96rem;
    line-height: 1em;
}

.index-about .index-about0 .aboutbox .container .box2 .box2a .box2b .num {
    letter-spacing: -2px;
}

.index-about .index-about0 .aboutbox .container .box2 .box2a .box2b .en {
    letter-spacing: -2px;
}

.index-about .index-about0 .aboutbox .container .box2 .box2a .box2b .fuhao {
    line-height: 1em;
    align-self: flex-start;
}

.index-about .index-about0 .aboutbox .container .box2 .box2a .box2c {
    margin-top: 0.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55555556em;
}

@keyframes aboutfuxian {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.publicindextitle .pcn1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 30px;
    overflow: hidden;
}

.publicindextitle .pcn1 .pcn1a {
    width: 12px;
    height: 30px;
    position: relative;
}

.publicindextitle .pcn1 .pcn1a .pcn1a1 {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ff0000;
    border-radius: 50%;
    left: 0;
    top: 5px;
}

.publicindextitle .pcn1 .pcn1a .pcn1a2 {
    position: absolute;
    width: 5px;
    height: 14px;
    border-radius: 3px;
    background-color: #ff0000;
    left: 0px;
    top: 12px;
}

.publicindextitle .pcn1 .pcn1b {
    color: rgba(255, 255, 255, 1);
    font-size: .21rem;
    font-family: "Futura-medium";
}

.publicindextitle .pcn2 {
    margin-top: 0.3rem;
    color: #ffffff;
    font-size: .45rem;
    line-height: .62rem;
    font-weight: bold;
    font-family: "Futura-Heavy";
    text-transform: uppercase;
}

.publicindextitle .public-btn2 {
    margin-top: 0.85rem;
}

.publicindextitle .public-btn2 .public-btn0 {
    border: 1px solid #ff0000;
}

.publicindextitle .public-btn2 .public-btn0::before {
    left: 0;
}

.publicindextitle.publicindextitle2 .pcn1 .pcn1b {
    color: #999999;
}

.publicindextitle.publicindextitle2 .pcn2 {
    color: #666666;
}

.publicindextitle.publicindextitle2 .pcn2 span {
    display: block;
    color: #000000;
}

@keyframes donghua1 {
    0% {
        transform: translateY(66%);
    }
    50% {
        transform: translateY(-33%);
    }
    100% {
        transform: translateY(66%);
    }
}

.index-product {
    padding: 1.5rem 0;
    background-color: #fff;
}

.index-product .container {
    display: flex;
    flex-wrap: wrap;
}

.index-product .container .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .index-product .container .left {
        width: 100%;
    }
}

.index-product .container .left .leftbox {
    width: 98%;
}

.index-product .container .left .leftbox .publicindextitle .pcn1 .pcn1b {
    color: #999999;
}

.index-product .container .left .leftbox .publicindextitle .pcn2 {
    color: #666666;
}

.index-product .container .left .leftbox .publicindextitle .pcn2 span {
    display: block;
    color: #000000;
}

.index-product .container .left .leftbox2 {
    margin-top: 1rem;
}

.index-product .container .left .leftbox2 .indexproducta2 {
    display: flex;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 {
    display: flex;
    align-items: center;
    padding: 0 0.4rem;
    cursor: pointer;
    position: relative;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background-color: #e5e5e5;
    height: 0.5rem;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1:nth-child(1) {
    padding-left: 0;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1:nth-child(1)::before {
    display: none;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .yuan {
    width: 30px;
    height: 30px;
    margin-right: 0.2rem;
    flex-shrink: 0;
    position: relative;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .yuan .yuan1 {
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    border: 6px solid #ccc;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .yuan svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .yuan svg .x-ba2 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.5s;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .box2 .cn1 {
    display: block;
    color: #666666;
    line-height: 1.41666667em;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1 .box2 .cn2 {
    display: block;
    line-height: 1.625em;
    color: #999999;
}

@media (max-width: 991px) {
    .index-product .container .left .leftbox2 .indexproducta2 .box1 .box2 .cn2 {
        font-size: 0.24rem;
    }
}

.index-product .container .left .leftbox2 .indexproducta2 .box1.on .yuan svg .x-ba2 {
    animation: myrotate 5s linear 1 forwards;
}

.index-product .container .left .leftbox2 .indexproducta2 .box1.on .box2 .cn1 {
    color: #333333;
}

.index-product .container .right {
    width: 50%;
}

@media (max-width: 991px) {
    .index-product .container .right {
        margin-top: 0.5rem;
        width: 100%;
    }
}

.index-product .container .right .indexproducta1 {
    position: relative;
    overflow: hidden;
}

.index-product .container .right .indexproducta1 .dianbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

@media (max-width: 991px) {
    .index-product .container .right .indexproducta1 .dianbox {
        display: none;
    }
}

.index-product .container .right .indexproducta1 .dianbox .dian {
    position: absolute;
}

.index-product .container .right .indexproducta1 .dianbox .dian .dcn1 {
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000;
}

.index-product .container .right .img::before {
    padding-top: 87.5%;
}

@keyframes myrotate {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 25;
    }
}

.index-case {
    width: 100%;
    background-color: #eee;
    min-height: 100vh;
    position: relative;
    margin-top: 1.6rem;
}

.index-case .indexcasea1 {
    width: 100%;
    height: 100vh;
    position: sticky;
    left: 0;
    top: 0;
}

.index-case .indexcasea1 .bgimg {
    width: 100%;
    height: 100%;
    position: relative;
}

.index-case .indexcasea1 .bgimg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.index-case .indexcasea1 .bgimg .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s;
}

.index-case .indexcasea1 .bgimg .img.on {
    opacity: 1;
}

.index-case .indexcasea1 .bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-case .indexcasea1 .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.index-case .indexcasea1 .container .publicindextitle {
    width: 40.625%;
}

@media (max-width: 991px) {
    .index-case .indexcasea1 .container .publicindextitle {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .index-case .indexcasea1 .container .publicindextitle {
        display: none;
    }
}

.index-case .indexcasea1 .container .publicindextitle .public-btn2 .public-btn0 {
    border: 1px solid #fff;
    background-color: transparent;
}

.index-case .indexcasea1 .container .publicindextitle .public-btn2 .public-btn0::before {
    background-color: transparent;
    left: -100%;
}

.index-case .indexcasea1 .container .publicindextitle .public-btn2 .public-btn0:hover {
    border: 1px solid #ff0000;
}

.index-case .indexcasea1 .container .publicindextitle .public-btn2 .public-btn0:hover::before {
    left: 0;
    background-color: #ff0000;
}

.index-case .indexcasea2 {
    padding: 38vh 0 6rem;
    margin-top: -100vh;
    position: relative;
    margin-left: auto;
}

@media (max-width: 991px) {
    .index-case .indexcasea2 {
        width: 60% !important;
        margin-right: 5% !important;
    }
}

@media (max-width: 767px) {
    .index-case .indexcasea2 {
        width: 100% !important;
        padding: 2.4rem 5% 4rem;
    }
}

.index-case .indexcasea2 .mbbox {
    display: none;
}

.index-case .indexcasea2 .mbbox .container {
    width: 100% !important;
}

@media (max-width: 991px) {
    .index-case .indexcasea2 .mbbox {
        margin-bottom: 1rem;
        display: block;
    }
}

.index-case .indexcasea2 .rightbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 0 auto;
}

.index-case .indexcasea2 .rightbox .rightbox2 {
    width: 48%;
    height: 4.88rem;
    border-radius: 0.2rem;
    overflow: hidden;
    margin-bottom: 7.8rem;
    position: relative;
    transition: all 0.2s;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: .5rem .35rem .35rem;
}

@media (max-width: 991px) {.index-case .indexcasea2 .rightbox .rightbox2
    .index-case .indexcasea2 .rightbox .rightbox2 {
        height: 5.5rem;
        width: 48.61111111%;
    }
}

.index-case .indexcasea2 .rightbox .rightbox2:nth-child(even) {
    transform: translateY(6.5rem);
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn0 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn0 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn1 {
    color: #fff;
    font-size: .28rem;
    font-family: "Futura-Heavy";
    transition: all 0.2s;
    z-index: 2;
    margin-bottom: .15rem;
}
.index-case .indexcasea2 .rightbox .rightbox2 .cn4{
    color: #fff;
    font-size: .54rem;
    line-height: .7rem;
    font-weight: bold;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn2 {
    z-index: 2;
    position: absolute;
    color: #ff0000;
    right: 0;
    top: 0;
    padding-right: 0.25rem;
    padding-top: 0.25rem;
    transition: all 0.2s;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn3 {
    position: absolute;
    width: 100%;
    bottom: 0.25rem;
    left: 0;
    padding: 0 0.35rem;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn3 .img {
    opacity: 0;
    transition: all 0.2s;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn3 .img img {
    height: 0.75rem;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn3 .cn4 {
    color: #000000;
    line-height: 1.45454545em;
    transition: all 0.2s;
    margin: 0.15rem 0;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn3 .cn5 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    transition: all 0.2s;
}

.index-case .indexcasea2 .rightbox .rightbox2.on {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}

.index-case .indexcasea2 .rightbox .rightbox2.on .cn0 {
    opacity: 0;
}

.index-case .indexcasea2 .rightbox .rightbox2.on .cn1 {
    color: #040000;
}
.index-case .indexcasea2 .rightbox .rightbox2.on .cn4 {
    color: #040000;
}
.index-case .indexcasea2 .rightbox .rightbox2.on .cn2 {
    color: #fff;
}

.index-case .indexcasea2 .rightbox .rightbox2.on .cn3 .img {
    opacity: 1;
}

.index-case .indexcasea2 .rightbox .rightbox2.on .cn3 .cn4 {
    color: #fff;
}

.index-case .indexcasea2 .rightbox .rightbox2.on .cn3 .cn5 {
    color: #040000;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn0 {
    opacity: 0;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn1 {
    color: #040000;
}
.index-case .indexcasea2 .rightbox .rightbox2:hover .cn4 {
    color: #040000;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn2 {
    color: #fff;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn3 .img {
    opacity: 1;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn3 .cn4 {
    color: #040000;
}

.index-case .indexcasea2 .rightbox .rightbox2:hover .cn3 .cn5 {
    color: #040000;
}




.news-list1 {
    padding: 1.45rem 0 1.2rem;
    background-color: #f8f8f8;
    margin-top: -0.5rem;
}

.news-list1 .container .newslistswiper {
    position: relative;
    overflow: hidden;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide {
    background-color: #fff;
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .img {
    border-radius: 0.2rem;
    width: 62.5%;
}

@media (max-width: 991px) {
    .news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .img {
        width: 100%;
    }
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .img::before {
    padding-top: 62%;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .img:hover img {
    transform: scale(1.05);
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box {
    width: 37.5%;
    padding: 0 0.75rem;
}

@media (max-width: 991px) {
    .news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box {
        width: 100%;
        padding: 0.5rem 0.3rem;
    }
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn1 {
    line-height: 1.625em;
    color: #666666;
    display: flex;
    align-items: center;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn1 img {
    margin-right: 0.04rem;
    width: 0.17rem;
    height: 0.17rem;
}

@media (max-width: 991px) {
    .news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn1 img {
        width: 0.3rem;
        height: 0.3rem;
    }
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3a {
    width: 100%;
    overflow: hidden;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3 {
    margin-top: 0.1rem;
    margin-bottom: 0.3rem;
    display: flex;
    position: relative;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3 img {
    flex-shrink: 0;
    position: relative;
    right: 0;
    top: 0;
    width: 0.18rem;
    height: 0.24rem;
    margin-left: 0.05rem;
}

@media (max-width: 991px) {
    .news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3 img {
        width: 0.24rem;
        top: -0.1rem;
        height: auto;
    }
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3 .cn2 {
    display: inline-block;
    position: relative;
    color: #333;
    line-height: 1.38461538em;
    transition: all 0.5s;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn3:hover .cn2 {
    color: #ff0000;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .cn4 {
    margin-top: 0.35rem;
    color: #666666;
    line-height: 1.875em;
    height: 5.625em;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .pcn3 {
    margin-top: 1rem;
}

.news-list1 .container .newslistswiper .swiper-wrapper .swiper-slide .box .yuanswiperpage {
    margin-top: 1rem;
    margin-left: 2px;
}

.news-list1 .public-search {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.news-list1.news-list1a {
    padding: 1.45rem 0 0.7rem;
}

.news-list1 .public-search .pright input {
    background-color: #F5f5f5;
}

.yuanswiperpage {
    display: flex;
}

.yuanswiperpage .swiper-pagination-bullet {
    background-color: transparent;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 0 0.15rem 0 0;
    opacity: 1 !important;
}

.yuanswiperpage .swiper-pagination-bullet .yuan1 {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    border: 4px solid #ccc;
}

.yuanswiperpage .swiper-pagination-bullet svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    opacity: 1;
}

.yuanswiperpage .swiper-pagination-bullet svg .x-ba2 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.5s;
}

.yuanswiperpage .swiper-pagination-bullet.swiper-pagination-bullet-active svg .x-ba2 {
    animation: myrotate 5s linear 1 forwards;
}

.news-list2 {
    padding: 0 0;
    background-color: #f8f8f8;
}

.news-list2 .container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .news-list2 .container {
        border-top: 0;
    }
}

.news-list2 .public-search .pright input {
    background-color: #F5f5f5;
}

.news-list3 {
    background-color: #f8f8f8;
    padding-bottom: 1.2rem;
}

.news-list3 .index-news {
    padding: 0;
}

.news-list3 .index-news .container .cn2 {
    margin-top: 0;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .news-list3 .index-news .container .cn2 {
        justify-content: space-between;
    }
}

.news-list3 .index-news .container .cn2 .cn2box {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 991px) {
    .news-list3 .index-news .container .cn2 .cn2box {
        margin-right: 0;
        width: 48%;
    }
}

@media (max-width: 767px) {
    .news-list3 .index-news .container .cn2 .cn2box {
        width: 100%;
    }
}

.news-list3 .index-news .container .cn2 .cn2box:nth-child(3n) {
    margin-right: 0;
}

.news-list3 .index-news .container .cn2 .cn2box .cn1 {
    padding-top: 0.2rem;
    line-height: 1.625em;
    color: #666666;
    display: flex;
    align-items: center;
}

.news-list3 .index-news .container .cn2 .cn2box .cn1 img {
    margin-right: 0.04rem;
    width: 0.17rem;
    height: 0.17rem;
}

@media (max-width: 991px) {
    .news-list3 .index-news .container .cn2 .cn2box .cn1 img {
        width: 0.3rem;
        height: 0.3rem;
    }
}

.news-list3 .index-news .container .cn2 .cn2box .cn3 {
    margin-top: 0.05rem;
}

.news-list4 {
    background-color: #f8f8f8;
    padding: 0 0 1.2rem;
}

.news-list4 .news-list5 .container .cn2 {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .news-list4 .news-list5 .container .cn2 {
        justify-content: space-between;
    }
}

.news-list4 .news-list5 .container .cn2 .cn2box {
    background-color: #Fff;
    border-radius: 0.2rem;
    padding: 0 0.35rem 0.3rem;
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
    width: calc((100% - 0.4rem) / 3);
}

.news-list4 .news-list5 .container .cn2 .cn2box:nth-child(3n) {
    margin-right: 0;
}

@media (max-width: 991px) {
    .news-list4 .news-list5 .container .cn2 .cn2box {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .news-list4 .news-list5 .container .cn2 .cn2box {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.news-list4 .news-list5 .container .cn2 .cn2box .img {
    margin: 0 -0.35rem;
    border-radius: 0.2rem;
}

.news-list4 .news-list5 .container .cn2 .cn2box .img::before {
    padding-top: 50.57692308%;
}

.news-list4 .news-list5 .container .cn2 .cn2box .cn3 {
    color: #333333;
    line-height: 1.5em;
    margin-top: 0.3rem;
    transition: all 0.5s;
    margin-bottom: 0.25rem;
}

@media (max-width: 767px) {
    .news-list4 .news-list5 .container .cn2 .cn2box .cn3 {
        height: initial;
    }
}

.news-list4 .news-list5 .container .cn2 .cn2box .line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.news-list4 .news-list5 .container .cn2 .cn2box .cn4 {
    margin-top: 0.2rem;
}

.news-list4 .news-list5 .container .cn2 .cn2box .cn4 .cn5 {
    display: flex;
    margin-top: 0.05rem;
}

.news-list4 .news-list5 .container .cn2 .cn2box .cn4 .cn5 .cn6 {
    flex-shrink: 0;
    color: #999999;
    line-height: 1.625em;
}

.news-list4 .news-list5 .container .cn2 .cn2box .cn4 .cn5 .cn7 {
    color: #999999;
    line-height: 1.625em;
}

.news-list4 .news-list5 .container .cn2 .cn2box:hover .img img {
    transform: scale(1.05);
}

.news-list4 .news-list5 .container .cn2 .cn2box:hover .cn3 {
    color: #ff0000;
}

.layui-form-select dl dd.layui-this {
    background-color: #ff0000;
}

#c-header.sanjiheader {
    top: 0;
}
.header-two{
    background: rgba(0, 0, 0, 1)!important;
}
#c-header.sanjiheader .container::before {
    display: none;
}

#c-header.sanjiheader .container .bgcolor {
    display: none;
}

#c-header.sanjiheader.c-style2 {
    background-color: #Fff;
}

.news-info {
    padding-top: 0.95rem;
    background-color: #F8f8f8;
}

.news-info .container {
    max-width: 1400px;
}

.news-info .container1 {
    display: flex;
}

.news-info .container1 .left1 {
    width: 67.14285714%;
}

@media (max-width: 991px) {
    .news-info .container1 .left1 {
        width: 100%;
    }
}

.news-info .container1 .left1 .cn1 {
    width: 81.91489362%;
}

@media (max-width: 991px) {
    .news-info .container1 .left1 .cn1 {
        width: 100%;
    }
}

.news-info1 {
    padding-bottom: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-info1 .left {
    width: 67.14285714%;
}

@media (max-width: 991px) {
    .news-info1 .left {
        width: 100%;
    }
}

.news-info1 .left .cn1 {
    color: #333;
    line-height: 1.5em;
}

.news-info1 .left .box1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.65rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-info1 .left .box1 .cn2 .cn3 {
    line-height: 0.4rem;
    margin-right: 0.4rem;
    color: #000;
}

@media (max-width: 767px) {
    .news-info1 .left .box1 .cn2 .cn3 {
        font-size: 0.24rem;
    }
}

.news-info1 .left .box1 .cn2 .cn3 em {
    font-style: normal;
    color: #000;
}

.news-info1 .left .box1 .share {
    display: flex;
    align-items: center;
    color: #666666;
}

.news-info1 .left .box1 .share .cn4 {
    width: 0.4rem;
    height: 0.4rem;
    background-color: #Fff;
    border-radius: 50%;
    margin: 0 0 0 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .news-info1 .left .box1 .share .cn4 {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.news-info1 .left .box1 .share .cn4 svg {
    width: auto;
    height: 0.16rem;
}

@media (max-width: 991px) {
    .news-info1 .left .box1 .share .cn4 svg {
        height: 0.3rem;
    }
}

.news-info1 .left .box1 .share .cn4 svg path {
    fill: #666;
    opacity: 1;
    stroke: none;
}

.news-info1 .left .box1 .share .cn4:hover {
    transition: all 0.5s;
    background-color: #ff0000;
}

.news-info1 .left .box1 .share .cn4:hover svg path {
    fill: #fff;
}

.news-info1 .left .box2 {
    padding-top: 0.35rem;
    padding-bottom: 0.75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-info1 .left .box2 a {
    color: #666;
}

.news-info1 .left .box3 {
    display: flex;
    align-items: center;
    padding-top: 0.2rem;
    width: 100%;
}

@media (max-width: 991px) {
    .news-info1 .left .box3 {
        flex-wrap: wrap;
    }
}

.news-info1 .left .box3 .box3a {
    width: calc(100% - 1.7rem);
    padding-right: 1rem;
}

@media (max-width: 991px) {
    .news-info1 .left .box3 .box3a {
        width: 100%;
        padding-right: 0;
    }
}

.news-info1 .left .box3 .box3b {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .news-info1 .left .box3 .box3b {
        width: 100%;
        margin-top: 0.5rem;
    }

    .news-info1 .left .box3 .box3b .public-btn {
        justify-content: center;
    }
}

.news-info1 .left .box3 .cn5 {
    color: #333333;
    line-height: 2.25em;
    transition: all 0.4s;
    display: block;
}

@media (max-width: 991px) {
    .news-info1 .left .box3 .cn5 {
        width: 100%;
    }
}

.news-info1 .left .box3 .cn5:hover {
    color: #ff0000;
}

.news-info1 .left .box3 .cn5.cn5none {
    color: #999999;
    cursor: auto;
}

.news-info1 .right {
    width: 28.57142857%;
}

@media (max-width: 991px) {
    .news-info1 .right {
        margin-top: 0.5rem;
        width: 100%;
    }
}

.news-info1 .right .box4 .cn6 {
    line-height: 0.4rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.65rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.13rem;
}

@media (max-width: 991px) {
    .news-info1 .right .box4 .cn6 {
        font-size: 0.4rem;
    }
}

.news-info1 .right .box4 .cn7 {
    padding: 0.13rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-info1 .right .box4 .cn7:last-child {
    padding: 0.13rem 0 0;
}

.news-info1 .right .box4 .cn7 .cn7a {
    width: 42.5%;
    border-radius: 0.1rem;
}

.news-info1 .right .box4 .cn7 .cn7a::before {
    padding-top: 58.82352941%;
}

.news-info1 .right .box4 .cn7 .cn7b {
    width: 50%;
}

.news-info1 .right .box4 .cn7 .cn8 {
    display: block;
    color: #333333;
    transition: all 0.4s;
    line-height: 1.5em;
}

.news-info1 .right .box4 .cn7 .cn9 {
    margin-top: 0.05rem;
    display: block;
    color: #999999;
    transition: all 0.4s;
    line-height: 1.71428571em;
}

.news-info1 .right .box4 .cn7:hover .cn7a img {
    transform: scale(1.05);
}

.news-info1 .right .box4 .cn7:hover .cn8 {
    color: #ff0000;
}

.news-info1 .right .box4 .cn7:hover .cn9 {
    color: #ff0000;
}

.news-info1 .left .box1 .share .cn4::before {
    display: none;
}

.csr-list {
    background-color: #F8f8f8;
    padding: 0.95rem 0 0;
}

.csr-list1 .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0.55rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.csr-list1 .container .cn1 {
    color: #333333;
    line-height: 1.27777778em;
}

.csr-list1 .container .public-btn .public-btn0 {
    min-width: 1.4rem;
    line-height: 0.48rem;
}

@media (max-width: 991px) {
    .csr-list1 .container .public-btn .public-btn0 {
        line-height: 0.76rem;
        min-width: 1.68rem;
    }
}

.csr-list1 .container .public-btn .public-btn0 span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-list1 .container .public-btn .public-btn0 span img {
    margin-left: 0.1rem;
}

.csr-list3 {
    background-color: #f8f8f8;
    padding-bottom: 1.2rem;
}

.csr-list3 .index-news {
    padding: 0;
}

.csr-list3 .index-news .container .cn2 {
    margin-top: 0;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .csr-list3 .index-news .container .cn2 {
        justify-content: space-between;
    }
}

.csr-list3 .index-news .container .cn2 .cn2box {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    position: relative;
    overflow: hidden;
}

.csr-list3 .index-news .container .cn2 .cn2box .bgimg {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    opacity: 0;
    transition: all 0.5s;
    right: 0;
    bottom: 0;
}

.csr-list3 .index-news .container .cn2 .cn2box .bgimg img {
    width: 2.27rem;
}

@media (max-width: 991px) {
    .csr-list3 .index-news .container .cn2 .cn2box {
        margin-right: 0;
        width: 48%;
    }
}

@media (max-width: 767px) {
    .csr-list3 .index-news .container .cn2 .cn2box {
        width: 100%;
    }
}

.csr-list3 .index-news .container .cn2 .cn2box:nth-child(3n) {
    margin-right: 0;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn3 {
    height: 1.5em;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn4 {
    line-height: 1.625em;
    height: 3.25em;
    margin-top: 0.2rem;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn5 {
    margin-top: 1rem;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn5 .cn6 {
    background-color: #ededed;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn5 .cn6 .cn7 {
    color: #666666;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn5 .cn6 .cn7 svg {
    width: 0.08rem;
    height: 0.12rem;
    margin-left: 0.1rem;
}

.csr-list3 .index-news .container .cn2 .cn2box .cn5 .cn6 .cn7 svg path {
    fill: #666;
    opacity: 1;
    stroke: none;
}

.csr-list3 .index-news .container .cn2 .cn2box:hover .bgimg {
    right: 0;
    bottom: 0;
    opacity: 1;
}

.csr-list3 .index-news .container .cn2 .cn2box:hover .cn5 .cn6 .cn7 {
    color: #Fff;
}

.csr-list3 .index-news .container .cn2 .cn2box:hover .cn5 .cn6 .cn7 svg path {
    fill: #Fff;
}

.respon-box1 {
    padding: 1.6rem 0 0;
    width: 100%;
    background-color: #F8f8f8;
    margin-top: -0.5rem;
}

.respon-box1 .csr-list3 {
    margin-top: 0.5rem;
    padding-bottom: 0;
}

.respon-box2 {
    padding: 1.6rem 0 0;
    background-color: #F8f8f8;
}

@media (max-width: 991px) {
    .respon-box2 {
        padding: 1rem 0 0;
    }
}

.respon-box2 .container .cn1 {
    text-align: center;
    color: #333333;
    line-height: 1.27777778em;
}

.respon-box2 .container .cn2 {
    text-align: center;
    color: #666666;
    line-height: 1.66666667em;
    width: 64.0625%;
    margin: 0.2rem auto 0;
}

@media (max-width: 991px) {
    .respon-box2 .container .cn2 {
        width: 100%;
    }
}

.respon-box2 .container .box {
    margin-top: 0.4rem;
    display: flex;
    height: 7.2rem;
    width: 100%;
    overflow: hidden;
    border-radius: 0.2rem;
    position: relative;
}

@media (max-width: 991px) {
    .respon-box2 .container .box {
        flex-wrap: wrap;
        height: auto;
    }
}

.respon-box2 .container .box .box2 {
    width: 20%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.respon-box2 .container .box .box2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2::after {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2 {
        background-size: cover;
        width: 100%;
        height: 5rem;
        margin-bottom: 0.5rem;
        border-radius: 0.2rem;
        overflow: hidden;
    }
}

.respon-box2 .container .box .box2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2::before {
        display: none;
    }
}

.respon-box2 .container .box .box2 .box3 {
    padding: 0 0.5rem;
    position: relative;
    z-index: 5;
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2 .box3 {
        padding: 0 0.3rem;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.respon-box2 .container .box .box2 .box3 .cn3 {
    transition: all 0.5s;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2 .box3 .cn3 {
        color: #fff;
        font-size: 0.36rem;
    }
}

.respon-box2 .container .box .box2 .box3 .cn4 {
    margin-top: 10px;
    color: #fff;
    line-height: 1.5em;
    height: 0;
    opacity: 0;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .respon-box2 .container .box .box2 .box3 .cn4 {
        opacity: 1;
        height: auto;
    }
}

.respon-box2 .container .box .box2:hover .box3 {
    animation: fuxuan 0.5s 1 linear forwards;
}

.respon-box2 .container .box .box2:hover .box3 .cn3 {
    color: #fff;
}

.respon-box2 .container .box .box2:hover .box3 .cn4 {
    height: auto;
    opacity: 1;
}

.respon-box2 .container .box .bgimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .respon-box2 .container .box .bgimg {
        display: none;
    }
}

.respon-box2 .container .box .bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
}

.respon-box2 .container .box .bgimg img.on {
    opacity: 1;
}

.respon-box2 .container .box .bgimg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.respon-box2 .bgimg2 {
    width: 100%;
    height: 100%;
    position: relative;
}

.respon-box2 .bgimg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.respon-box2.respon-box2a {
    overflow: hidden;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding-top: 0;
}

@media (max-width: 991px) {
    .respon-box2.respon-box2a {
        position: relative;
        height: auto;
    }
}

@keyframes fuxuan {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.respon-box3 {
    background-color: #Fff;
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    position: relative;
    z-index: 10;
}

.respon-box3 .container .box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.respon-box3 .container .box1 .cn1 {
    flex-shrink: 0;
    color: #000000;
    line-height: 1rem;
}

.respon-box3 .container .box1 .box1a {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .respon-box3 .container .box1 .box1a {
        width: 100%;
        justify-content: center;
    }
}

.respon-box3 .container .box1 .box1a .cn2 {
    line-height: 1rem;
    color: #666666;
    margin-left: 0.8rem;
    position: relative;
}

@media (max-width: 991px) {
    .respon-box3 .container .box1 .box1a .cn2 {
        margin: 0 0.3rem;
    }
}

.respon-box3 .container .box1 .box1a .cn2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: all 0.5s;
}

.respon-box3 .container .box1 .box1a .cn2.on {
    color: #ff0000;
}

.respon-box3 .container .box1 .box1a .cn2.on::before {
    width: 100%;
}

.respon-box3 .container .box2 {
    margin-top: 0.65rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.respon-box3 .container .box2 .left {
    position: relative;
    width: 33.125%;
}

@media (max-width: 991px) {
    .respon-box3 .container .box2 .left {
        display: none;
    }
}

.respon-box3 .container .box2 .left .leftbox {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    overflow: auto;
    width: 100%;
    display: none;
    padding-right: 0.5rem;
}

.respon-box3 .container .box2 .left .leftbox.on {
    display: block;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2 {
    display: flex;
    position: relative;
    padding: 0.35rem 0;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.respon-box3 .container .box2 .left .leftbox .leftbox2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transition: all 0.5s;
    background-color: #ff0000;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2 .cn3 {
    width: calc(100% - 0.32rem);
    padding-right: 0.2rem;
    color: #666666;
    transition: all 0.5s;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2 .cn4 {
    width: 0.32rem;
    height: 0.32rem;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2 .cn4 img {
    width: 0.06rem;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2.on::after {
    width: 100%;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2.on .cn3 {
    color: #ff0000;
}

.respon-box3 .container .box2 .left .leftbox .leftbox2.on .cn4 {
    opacity: 1;
}

.respon-box3 .container .box2 .right {
    position: relative;
    width: 63.75%;
    background-color: #fff;
}

@media (max-width: 991px) {
    .respon-box3 .container .box2 .right {
        width: 100%;
    }
}

.respon-box3 .container .box2 .right .rightbox {
    position: relative;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #Fff;
}

@media (max-width: 991px) {
    .respon-box3 .container .box2 .right .rightbox {
        padding-bottom: 1.5rem;
    }
}

.respon-box3 .container .box2 .right .rightbox.on {
    z-index: 5;
    position: relative;
}

.respon-box3 .container .box2 .right .rightbox .swiper-slide .img {
    border-radius: 0.2rem;
}

.respon-box3 .container .box2 .right .rightbox .swiper-slide .img::before {
    padding-top: 54.90196078%;
}

.respon-box3 .container .box2 .right .rightbox .swiper-slide .cn5 {
    color: #000000;
    line-height: 1.5em;
    margin: 0.45rem 0 0.2rem;
}

.respon-box3 .container .box2 .right .rightbox .swiper-slide .cn6 {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.75em;
    height: 3.5em;
}

.respon-box3 .container .box2 .right .rightbox .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .respon-box3 .container .box2 .right .rightbox .swiper-pagination {
        display: block;
    }
}

.respon-box3 .container .box2 .right .rightbox .swiper-pagination-bullet-active {
    background: #ff0000;
}

.respon-box4 {
    background-color: #f8f8f8;
    width: 100%;
    padding-top: 1.15rem;
    position: relative;
    z-index: 10;
}

.respon-box4 .container .cn0 {
    color: #000;
    line-height: 1.27777778em;
    margin-bottom: 0.45rem;
}

.public-windows99 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.public-windows99.lianxiwindows {
    display: none;
}

.public-windows99.shenqingggangwei {
    display: none;
}

.public-windows99.shenqingggangwei .box {
    width: 1200px;
    max-width: 90%;
    box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.21);
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .box {
        width: 90%;
    }
}

.public-windows99.shenqingggangwei .box .cn7 {
    margin-top: 0.1rem;
}

.public-windows99.shenqingggangwei .cn41 {
    margin-top: 0.35rem;
    display: flex;
}

.public-windows99.shenqingggangwei .cn41 .cn7 {
    width: auto;
    min-width: 1.4rem;
    line-height: 0.46rem;
    background-color: #ff0000;
    border-radius: 0.24rem;
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .cn41 .cn7 {
        min-width: 1.4rem;
        padding: 0 0.2rem;
        line-height: 0.76rem;
    }
}

.public-windows99.shenqingggangwei .box10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.public-windows99.shenqingggangwei .box10 .box2 {
    width: 48%;
}

.public-windows99.shenqingggangwei .box10 .box2.box12 {
    width: 100%;
    margin-top: 0.2rem;
}

.public-windows99.shenqingggangwei .box10 .cn40 {
    color: #222222;
}

.public-windows99.shenqingggangwei .box10 .cn13 {
    color: #666666;
    line-height: 0.4rem;
}

@media (max-width: 767px) {
    .public-windows99.shenqingggangwei .box10 .cn13 {
        display: none;
    }
}

.public-windows99.shenqingggangwei .box10 .box11 {
    width: 100%;
    margin-top: 0.4rem;
}

.public-windows99.shenqingggangwei .box10 .box11 .cn4 {
    color: #222222;
    line-height: 0.5rem;
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .box10 .box11 .cn4 {
        line-height: 0.6rem;
    }
}

.public-windows99.shenqingggangwei .box10 .box11 .cn4 .cn5 {
    color: #ff0000;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 {
    width: 100%;
    height: 1.8rem;
    border-radius: 6px;
    border: solid 1px #dedede;
    position: relative;
    padding: 0.2rem 0.3rem;
    display: flex;
    align-items: flex-start;
    background-color: #f6f6f6;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .box10 .box11 .box12 {
        height: auto;
    }
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn30 {
    color: #999999;
    line-height: 1.71428571em;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn30 .cn30a {
    color: #000000;
    line-height: 1.55555556em;
    display: block;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn30 .cn30b {
    color: #999999;
    line-height: 1.625em;
    display: block;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn31 {
    right: 0.2rem;
    bottom: 0.2rem;
    position: absolute;
    min-width: 1.4rem;
    line-height: 0.46rem;
    background-color: #ffffff;
    border-radius: 0.23rem;
    overflow: hidden;
    color: #ff0000;
    padding: 0 0.1rem;
    text-align: center;
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .box10 .box11 .box12 .cn31 {
        position: relative;
        right: 0;
        bottom: 0;
        padding: 0 0.2rem;
        line-height: 0.76rem;
        margin: 0.2rem 0 0;
        width: 100%;
    }
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn31 span {
    display: block;
    position: relative;
    background-color: #fff;
    z-index: 2;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn31 input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 {
    display: flex;
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
    height: 0.44rem;
    bottom: 0.2rem;
    left: 0.2rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 {
        width: 100%;
        position: relative;
        bottom: 0;
        left: 0;
        justify-content: flex-start;
        display: none;
    }
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .zclose {
    position: absolute;
    right: -0.1rem;
    top: -0.05rem;
    cursor: pointer;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .zclose img {
    width: 0.2rem;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn33 {
    width: 0.33rem;
    margin-right: 0.07rem;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn33 img {
    width: 0.33rem;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 {
    max-width: 3rem;
    padding: 0 0.2rem;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn35 {
    display: block;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn36 {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-windows99.shenqingggangwei .box10 .box11 .box12 .cn32 .cn34 .cn36 em {
    font-style: normal;
    color: #999999;
}

.public-windows99 .box {
    width: 7.5rem;
    border-radius: 0.1rem;
    background-color: #Fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 0.6rem;
    max-height: 100vh;
    overflow: auto;
}

@media (max-width: 991px) {
    .public-windows99 .box {
        width: 90%;
        padding: 0.5rem 0.3rem;
    }
}

.public-windows99 .box .cnclose {
    position: absolute;
    right: 0.6rem;
    top: 0.6rem;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    transition: all 0.4s;
    cursor: pointer;
}

.public-windows99 .box .cnclose span {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
}

.public-windows99 .box .cnclose span:nth-child(1) {
    width: 100%;
    height: 1px;
}

.public-windows99 .box .cnclose span:nth-child(2) {
    width: 1px;
    height: 100%;
}

.public-windows99 .box .cnclose:hover {
    transform: rotate(-135deg);
}

.public-windows99 .box .cn1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.public-windows99 .box .cn1 .cn2 {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 0.06rem;
    background-color: #e5f4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.2rem;
}

.public-windows99 .box .cn1 .cn2 img {
    width: 0.19rem;
}

.public-windows99 .box .cn1 .cn3 {
    color: #333333;
    line-height: 1.27777778em;
}

.public-windows99 .box .cn1 .cn3a {
    margin-top: 0.1rem;
    width: 100%;
    display: block;
    color: #999999;
    line-height: 1.625em;
}

.public-windows99 .box .cn1 .cn3a em {
    font-style: normal;
    color: #999999;
}

.public-windows99 .box .box2 {
    margin-top: 0.1rem;
}

.public-windows99 .box .box2 .cn4 {
    color: #222222;
    line-height: 0.5rem;
}

@media (max-width: 991px) {
    .public-windows99 .box .box2 .cn4 {
        line-height: 0.6rem;
    }
}

.public-windows99 .box .box2 .cn4 .cn5 {
    color: #ff0000;
    margin-right: 5px;
}

.public-windows99 .box .box2 .cn6 {
    width: 100%;
}

.public-windows99 .box .box2 .cn6 input {
    padding: 0 0.2rem;
    width: 100%;
    line-height: 0.55rem;
    height: 0.55rem;
    background-color: #f6f6f6;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
    color: #888888;
}

@media (max-width: 991px) {
    .public-windows99 .box .box2 .cn6 input {
        line-height: 0.76rem;
        height: 0.76rem;
    }
}

.public-windows99 .box .box2 .cn6 input::placeholder {
    color: #888888;
}

.public-windows99 .box .box2 .cn6 textarea {
    padding: 0 0.2rem;
    width: 100%;
    height: 0.55rem;
    line-height: 0.55rem;
    height: 1.3rem;
    background-color: #fafafa;
    border-radius: 6px;
    border: 1px solid #f2f2f2;
    color: #999;
}

@media (max-width: 991px) {
    .public-windows99 .box .box2 .cn6 textarea {
        line-height: 0.76rem;
        height: 0.76rem;
    }
}

.public-windows99 .box .box2 .cn6 textarea::placeholder {
    color: #999;
}

.public-windows99 .box .cn7 {
    margin-top: 0.4rem;
    width: 100%;
    display: block;
    line-height: 0.5rem;
    border-radius: 4px;
    background-color: #ff0000;
    color: #fff;
}

@media (max-width: 991px) {
    .public-windows99 .box .cn7 {
        line-height: 0.76rem;
    }
}

body .layui-laydate .layui-this {
    background-color: #ff0000 !important;
}

.layui-laydate-footer span:hover {
    color: #ff0000 !important;
}

.layui-laydate-header i:hover,
.layui-laydate-header span:hover {
    color: #ff0000 !important;
}

.contact-box1 {
    width: 100%;
    background-color: #f8f8f8;
    margin-top: -0.55rem;
    padding: 1.4rem 0 1rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .contact-box1 {
        overflow: auto;
    }
}

.contact-box1 .tips {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.7rem;
    color: #999999;
}

@media (max-width: 991px) {
    .contact-box1 .tips {
        bottom: 0.3rem;
    }
}

.contact-box1 .tips span {
    color: #ff0000;
}

.contact-box1 .box {
    width: 79.94764398%;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 991px) {
    .contact-box1 .box {
        width: 20rem;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .contact-box1 .box {
        width: 22rem;
    }
}

.contact-box1 .box .bgimg {
    position: relative;
    width: 100%;
}

.contact-box1 .box .bgimg img {
    width: 100%;
}

.contact-box1 .box .dian {
    overflow: initial;
    position: absolute;
    left: 20%;
    top: 20%;
    width: 0.39292731%;
    cursor: pointer;
}

.contact-box1 .box .dian.diana .dian1 {
    opacity: 0;
}

.contact-box1 .box .dian.diana .dian2 {
    animation: initial;
    width: 0.2rem;
    height: 0.2rem;
    background-color: transparent;
    opacity: 1;
    background-image: url(../images/wimg26.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
}

.contact-box1 .box .dian.diana .text1 {
    color: #ff0000;
}

.contact-box1 .box .dian.dianb .dian2 {
    animation: initial;
    width: 0.27rem;
    height: 0.25rem;
    background-color: transparent;
    opacity: 1;
    background-image: url(../images/wimg28.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
}

.contact-box1 .box .dian.dianb .dian2::before {
    content: "";
    width: 1.5rem;
    border-top: 2px dotted #ff0000;
    position: absolute;
    opacity: 0.2;
    right: 0.13rem;
    bottom: calc(100% + 1.1rem);
}

@media (max-width: 991px) {
    .contact-box1 .box .dian.dianb .dian2::before {
        bottom: calc(100% + 1.6rem);
    }
}

.contact-box1 .box .dian.dianb .dian2::after {
    opacity: 0.2;
    content: "";
    height: 1.23rem;
    border-left: 2px dotted #ff0000;
    position: absolute;
    right: 0.13rem;
    bottom: 0.13rem;
}

@media (max-width: 991px) {
    .contact-box1 .box .dian.dianb .dian2::after {
        height: 1.7rem;
    }
}

.contact-box1 .box .dian.dianb .dian3 {
    position: absolute;
    width: 1.85rem;
    height: 0.45rem;
    top: -1.8rem;
    left: -2.7rem;
}

@media (max-width: 991px) {
    .contact-box1 .box .dian.dianb .dian3 {
        top: -2.3rem;
    }
}

.contact-box1 .box .dian.dianb .text1 {
    left: -2rem;
    top: -1.2rem;
    color: #ff0000;
}

@media (max-width: 991px) {
    .contact-box1 .box .dian.dianb .text1 {
        top: -1.7rem;
    }
}

.contact-box1 .box .dian.right .text1 {
    left: initial;
    right: 0.2rem;
}

.contact-box1 .box .dian .dian1 {
    width: 6px;
    height: 6px;
    background-color: #ff0000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-box1 .box .dian .dian2 {
    width: 0.17rem;
    height: 0.17rem;
    background-color: #ff0000;
    opacity: 0.1;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: myscale99 2s infinite linear forwards;
}

.contact-box1 .box .dian .text1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    left: 0.2rem;
    white-space: nowrap;
}

.contact-box1 .box .dian .text1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.02rem;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: all 0.5s;
}

.contact-box1 .box .dian .info {
    position: absolute;
    width: 3rem;
    background-color: #Fff;
    border-radius: 0.2rem;
    top: 100%;
    left: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 2;
}

.contact-box1 .box .dian .info .img {
    border-radius: 0.2rem;
}

.contact-box1 .box .dian .info .img::before {
    padding-top: 61.66666667%;
}

.contact-box1 .box .dian .info .text2 {
    text-align: center;
    color: #333333;
    line-height: 0.6rem;
}

.contact-box1 .box .dian.on {
    z-index: 5;
}

.contact-box1 .box .dian.on .text1 {
    color: #ff0000;
}

.contact-box1 .box .dian.on .text1::before {
    width: 100%;
}

.contact-box1 .box .dian.on .info {
    opacity: 1;
    visibility: visible;
}

.contact-box1 .box .box10 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1.28rem;
    border: 1px dashed rgba(215, 0, 0, 0.2);
    border-radius: 0.1rem;
}

@media (max-width: 1900px) {
    .contact-box1 .box .box10 {
        width: 1.5rem;
    }
}

@media (max-width: 1580px) {
    .contact-box1 .box .box10 {
        width: 2rem;
    }
}

@media (max-width: 991px) {
    .contact-box1 .box .box10 {
        width: 2.5rem;
        left: 0.3rem;
    }
}

.contact-box1 .box .box10 .box11 {
    display: flex;
    align-items: center;
    padding: 0 0.12rem;
    position: relative;
}

.contact-box1 .box .box10 .box11:last-child::before {
    display: none;
}

.contact-box1 .box .box10 .box11:last-child .box13 {
    color: #666666;
}

.contact-box1 .box .box10 .box11::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 0.24rem);
    bottom: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.contact-box1 .box .box10 .box11 .box12 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.1rem;
}

.contact-box1 .box .box10 .box11 .box12 img {
    width: 0.19rem;
}

.contact-box1 .box .box10 .box11 .box13 {
    line-height: 0.6rem;
    color: #ff0000;
}

@keyframes myscale99 {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.3;
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.contact-box2 {
    padding-top: 1.1rem;
    width: 100%;
}

.contact-box2 .contact-box2a .container {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-box2 .contact-box2a .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
}

.contact-box2 .contact-box2a .container .box {
    margin-top: 0.45rem;
    position: relative;
}

.contact-box2 .contact-box2a .container .box .bgimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.2rem;
    overflow: hidden;
}

.contact-box2 .contact-box2a .container .box .bgimg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2a .container .box .bgimg::after {
        opacity: 1;
    }
}

.contact-box2 .contact-box2a .container .box .bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-box2 .contact-box2a .container .box .box2 {
    position: relative;
    padding: 0.6rem 0;
    margin: 0 0.4rem 0 auto;
    width: 27.875%;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2a .container .box .box2 {
        width: calc(100% - 0.6rem);
        margin: 0 0.3rem;
        padding: 1.2rem 0;
    }
}

.contact-box2 .contact-box2a .container .box .box2 .box2a {
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-box2 .contact-box2a .container .box .box2 .box2a .cn2 {
    color: #fefefe;
    line-height: 1.625em;
}

.contact-box2 .contact-box2a .container .box .box2 .box2a .cn3 {
    color: #fefefe;
    line-height: 1.38461538em;
}

.contact-box2 .contact-box2a .container .box .box2 .box2b {
    margin-top: 0.1rem;
}

.contact-box2 .contact-box2a .container .box .box2 .box2b .box2c {
    display: flex;
    align-items: center;
    margin-top: 0.3rem;
}

.contact-box2 .contact-box2a .container .box .box2 .box2b .box2c .img {
    width: 0.48rem;
    height: 0.48rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 0.2rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2a .container .box .box2 .box2b .box2c .img {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.contact-box2 .contact-box2a .container .box .box2 .box2b .box2c .img img {
    max-width: 50%;
    max-height: 50%;
    object-fit: cover;
}

.contact-box2 .contact-box2a .container .box .box2 .box2b .box2c .cn4 {
    color: #ffffff;
}

.contact-box2 .contact-box2b {
    padding-top: 0.45rem;
}

.contact-box2 .contact-box2b .public-search {
    display: none;
    padding: 0.45rem 0 0.4rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2b .public-search {
        border-bottom: 0;
    }
}

.contact-box2 .contact-box2b .container {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-box2 .contact-box2b .container .box {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2b .container .box {
        justify-content: space-between;
    }
}

.contact-box2 .contact-box2b .container .box .box2 {
    padding: 0.35rem;
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    width: calc((100% - 0.4rem) / 3);
    background-color: #f8f8f8;
    border-radius: 0.2rem;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2b .container .box .box2 {
        width: 48%;
        margin-right: 0;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 767px) {
    .contact-box2 .contact-box2b .container .box .box2 {
        width: 100%;
    }
}

.contact-box2 .contact-box2b .container .box .box2:nth-child(3n) {
    margin-right: 0;
}

.contact-box2 .contact-box2b .container .box .box2 .box2a {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-box2 .contact-box2b .container .box .box2 .box2a .cn2 {
    color: #333333;
    line-height: 1.5em;
}

.contact-box2 .contact-box2b .container .box .box2 .box2a .cn3 {
    margin-left: 0.3rem;
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.3);
    line-height: 1.5em;
}

.contact-box2 .contact-box2b .container .box .box2 .box2b {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.contact-box2 .contact-box2b .container .box .box2 .box2b .cn4 {
    color: #666666;
    line-height: 2em;
}

.contact-box2 .contact-box2b .container .box .box2 .box2d {
    display: flex;
}

.contact-box2 .contact-box2b .container .box .box2 .box2c {
    min-width: 1.1rem;
    border-radius: 0.23rem;
    background-color: #FFf;
    line-height: 0.46rem;
    padding: 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2b .container .box .box2 .box2c {
        line-height: 0.76rem;
        min-width: 1.6rem;
        border-radius: 0.38rem;
    }
}

.contact-box2 .contact-box2b .container .box .box2 .box2c .cn5 {
    color: #ff0000;
    transition: all 0.5s;
}

.contact-box2 .contact-box2b .container .box .box2 .box2c .cn6 {
    margin-left: 0.1rem;
    width: 0.24rem;
    height: 0.24rem;
    background-color: #F8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .contact-box2 .contact-box2b .container .box .box2 .box2c .cn6 {
        width: 0.4rem;
        height: 0.4rem;
    }
}

.contact-box2 .contact-box2b .container .box .box2 .box2c .cn6 img {
    width: 45.83333333%;
}

.contact-box2 .contact-box2b .container .box .box2:hover .box2d .box2c {
    background-color: #ff0000;
}

.contact-box2 .contact-box2b .container .box .box2:hover .box2d .box2c .cn5 {
    color: #Fff;
}

.contact-box2 .contact-box2b .container .box .box2:hover .box2d .box2c .cn6 {
    background-color: #Fff;
}

.project-list1 {
    padding-top: 1.4rem;
    margin-top: -0.55rem;
    background-color: #Fff;
}

.project-list1 .project-list2 .container .cn1 {
    padding-bottom: 0.75rem;
    line-height: 1.46153846em;
    color: #000;
}

.project-list1 .project-list2 .container .box {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.6rem;
    display: flex;
    align-items: center;
    padding-bottom: 0.74rem;
}

@media (max-width: 991px) {
    .project-list1 .project-list2 .container .box {
        flex-wrap: wrap;
    }
}

.project-list1 .project-list2 .container .box .img {
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.62rem;
    height: 0.62rem;
    margin-right: 0.2rem;
    flex-shrink: 0;
}

.project-list1 .project-list2 .container .box .img img {
    object-fit: cover;
    max-width: 0.27rem;
    max-height: 0.38rem;
}

@media (max-width: 991px) {
    .project-list1 .project-list2 .container .box .text {
        width: 100%;
        margin-top: 0.15rem;
    }
}

.project-list1 .project-list2 .container .box .text .cn2 {
    color: #333333;
    line-height: 1.55555556em;
    display: block;
}

@media (max-width: 991px) {
    .project-list1 .project-list2 .container .box .text .cn2 {
        font-size: 0.32rem;
    }
}

.project-list1 .project-list2 .container .box .text .cn3 {
    display: block;
    color: #666;
    line-height: 1.625em;
}

.project-list1 .projuect-list3 {
    position: relative;
    overflow: hidden;
}

.project-list1 .projuect-list3 .swiper-slide {
    position: relative;
}

.project-list1 .projuect-list3 .swiper-slide .img::before {
    padding-top: 39.58333333%;
}

@media (max-width: 991px) {
    .project-list1 .projuect-list3 .swiper-slide .img::before {
        padding-top: 120%;
    }
}

@media (max-width: 991px) {
    .project-list1 .projuect-list3 .swiper-slide .img.pc-img {
        display: none;
    }
}

.project-list1 .projuect-list3 .swiper-slide .img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .project-list1 .projuect-list3 .swiper-slide .img.mb-img {
        display: block;
    }
}

.project-list1 .projuect-list3 .swiper-slide .container {
    z-index: 3;
    top: 0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.project-list1 .projuect-list3 .swiper-slide .container .cn1 {
    display: inline-block;
    line-height: 1.25rem;
    color: #ff0000;
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .project-list1 .projuect-list3 .swiper-slide .container .cn1 {
        line-height: 0.76rem;
        font-size: 0.76rem;
    }
}

.project-list1 .projuect-list3 .swiper-slide .container .cn1.white {
    color: #Fff;
}

.project-list1 .projuect-list3 .swiper-slide .container .cn3 {
    margin-top: 0.8rem;
    padding-bottom: 0.25rem;
    display: flex;
    position: relative;
}

.project-list1 .projuect-list3 .swiper-slide .container .cn3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.project-list1 .projuect-list3 .swiper-slide .container .cn3 img {
    flex-shrink: 0;
    position: relative;
    right: 0;
    top: 0;
    width: 0.18rem;
    height: 0.24rem;
    margin-left: 0.05rem;
}

@media (max-width: 991px) {
    .project-list1 .projuect-list3 .swiper-slide .container .cn3 img {
        width: 0.24rem;
        top: -0.1rem;
        height: auto;
    }
}

.project-list1 .projuect-list3 .swiper-slide .container .cn3 .cn2 {
    display: inline-block;
    position: relative;
    color: #fff;
    line-height: 1.38461538em;
    transition: all 0.5s;
}

.project-list1 .projuect-list3 .swiper-slide .container .cn5 {
    margin: 0.2rem 0 0.65rem;
}

.project-list1 .projuect-list3 .swiper-slide .container .cn5 .cn6 {
    color: #fff;
    line-height: 1.875em;
}

.project-list1 .projuect-list3 .swiper-slide .container .public-btn0 {
    background-color: transparent;
    border: 1px solid #Fff;
}

.project-list1 .projuect-list3 .swiper-slide .container .public-btn0:hover {
    opacity: 1;
    border: 1px solid #ff0000;
}

.swiperprev,
.swipernext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(248, 248, 248, 0.3);
    z-index: 5;
    cursor: pointer;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .swiperprev,
    .swipernext {
        width: 0.76rem;
        height: 0.76rem;
        display: none;
    }
}

.swiperprev:hover,
.swipernext:hover {
    background-color: #ff0000;
}

.swipernext {
    transform: translateY(-50%) rotate(180deg);
}

.news-list2.project-list4 {
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
}

.news-list2.project-list4 .public-search {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-list5 {
    background-color: #f8f8f8;
    padding-bottom: 1.2rem;
}

.project-list5 .index-news {
    padding: 0;
}

.project-list5 .index-news .container .cn2 {
    margin-top: 0;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .project-list5 .index-news .container .cn2 {
        justify-content: space-between;
    }
}

.project-list5 .index-news .container .cn2 .cn2box {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 991px) {
    .project-list5 .index-news .container .cn2 .cn2box {
        margin-right: 0;
        width: 48%;
    }
}

@media (max-width: 767px) {
    .project-list5 .index-news .container .cn2 .cn2box {
        width: 100%;
    }
}

.project-list5 .index-news .container .cn2 .cn2box:nth-child(3n) {
    margin-right: 0;
}

.project-list5 .index-news .container .cn2 .cn2box .img .cn45 {
    line-height: 0.72rem;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0.2rem;
    top: 0.2rem;
    z-index: 3;
    color: #Fff;
}

.project-list5 .index-news .container .cn2 .cn2box .img .cn45.red {
    color: #ff0000;
}

@media (max-width: 991px) {
    .project-list5 .index-news .container .cn2 .cn2box .img .cn45 {
        font-size: 0.28rem;
        line-height: 0.5rem;
    }
}

.project-list5 .index-news .container .cn2 .cn2box .cn1 {
    padding-top: 0.2rem;
    line-height: 1.625em;
    color: #666666;
    display: flex;
    align-items: center;
}

.project-list5 .index-news .container .cn2 .cn2box .cn1 img {
    margin-right: 0.04rem;
    width: 0.17rem;
    height: 0.17rem;
}

@media (max-width: 991px) {
    .project-list5 .index-news .container .cn2 .cn2box .cn1 img {
        width: 0.3rem;
        height: 0.3rem;
    }
}

.project-list5 .index-news .container .cn2 .cn2box .cn3 {
    margin-top: 0.3rem;
    height: 1.5em;
}

.project-list5 .index-news .container .cn2 .cn2box .cn4 {
    margin-top: 0.25rem;
    height: initial;
}

.project-list5 .index-news .container .cn2 .cn2box .cn4 .cn4a {
    color: #999999;
    line-height: 1.875em;
    display: block;
}

.public-banner3 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    left: 0;
    top: 0;
}

.public-banner3 .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.public-banner3 .swiper-wrapper .swiper-slide .img {
    position: relative;
    width: 100%;
    height: 100%;
}

.public-banner3 .swiper-wrapper .swiper-slide .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.public-banner3 .swiper-wrapper .swiper-slide .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerscale 20s infinite linear;
}

@media (max-width: 991px) {
    .public-banner3 .swiper-wrapper .swiper-slide .img img.pc-img {
        display: none;
    }
}

.public-banner3 .swiper-wrapper .swiper-slide .img img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .public-banner3 .swiper-wrapper .swiper-slide .img img.mb-img {
        display: block;
    }
}

.public-banner3 .cn10 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #Fff;
    width: 100%;
    justify-content: center;
    z-index: 10;
}

.public-banner3 .cn10 img {
    margin-right: 0.1rem;
}

.public-banner3 .cn10 svg {
    margin-right: 0.1rem;
}

.public-banner3 .cn10 svg path {
    stroke: none;
    fill: #fff;
    opacity: 1;
}

.public-banner3 .containerpublic {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    z-index: 3;
}

@media (max-width: 991px) {
    .public-banner3 .containerpublic {
        top: 1.2rem;
    }
}

.public-banner3 .textcontainer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.public-banner3 .textcontainer .cn1 {
    text-align: left;
    color: #ffffff;
    line-height: 1.27777778em;
}

.public-banner3 .textcontainer .cn1 span {
    color: #ff0000;
}

.public-banner3 .textcontainer .line {
    width: 6.5rem;
    margin: 0.65rem 0 0.3rem;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

@media (max-width: 991px) {
    .public-banner3 .textcontainer .line {
        width: 100%;
    }
}

.public-banner3 .textcontainer .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.03rem;
    width: 0.3rem;
    background-color: #ff0000;
}

.public-banner3 .textcontainer .cn2 {
    width: 6.5rem;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    line-height: 1.625em;
}

@media (max-width: 991px) {
    .public-banner3 .textcontainer .cn2 {
        width: 100%;
    }
}

.projectinfo-box1 {
    padding-top: 0.7rem;
}

.projectinfo-box1 .container .cn1 {
    padding-bottom: 0.45rem;
    line-height: 1.3125em;
    color: #000000;
    border-bottom: 2px solid #e5e5e5;
}

@media (max-width: 991px) {
    .projectinfo-box1 .container .cn1 {
        border-bottom: 1px solid #e5e5e5;
    }
}

.projectinfo-box1 .container .cn2 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.projectinfo-box1 .container .cn2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

.projectinfo-box1 .container .cn2 .cn3 {
    width: calc(100% / 3);
    padding: 0.32rem 0;
    line-height: 1.625em;
    border-bottom: 1px solid #e5e5e5;
    padding-right: 0.3rem;
}

@media (max-width: 991px) {
    .projectinfo-box1 .container .cn2 .cn3 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .projectinfo-box1 .container .cn2 .cn3 {
        width: 100%;
    }
}

.projectinfo-box1 .container .cn2 .cn3 .cn4 {
    color: #333;
}

.projectinfo-box1 .container .cn2 .cn3 .cn5 {
    color: #666;
}

.projectinfo-box2 {
    padding-top: 0.85rem;
    padding-bottom: 1.15rem;
}

.projectinfo-box2 .container .cn1 {
    color: #000;
    line-height: 1.3125em;
}

.projectinfo-box2 .container .projuectinfo2swiper {
    position: relative;
    overflow: hidden;
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-slide {
    width: 49.25%;
    margin-top: 0.45rem;
}

@media (max-width: 991px) {
    .projectinfo-box2 .container .projuectinfo2swiper .swiper-slide {
        width: 100%;
    }
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-slide .img {
    border-radius: 0.2rem;
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-slide .img::before {
    padding-top: 53.29949239%;
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-slide .cn2 {
    margin-top: 0.35rem;
    color: #666;
    line-height: 1.75em;
}

.projectinfo-box2 .container .projuectinfo2swiper .swiper-slide:hover .img img {
    transform: scale(1.05);
}

.projectinfo-box3 {
    background-color: #f8f8f8;
    padding-top: 0.95rem;
    padding-bottom: 0.5rem;
}

.projectinfo-box3 .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.35rem;
}

.projectinfo-box3 .product3-box4 {
    padding: 0;
}

.projectinfolist {
    margin-top: 0.25rem;
}

.projectinfolist .box {
    margin-top: 0.25rem;
    display: block;
    position: relative;
}

.projectinfolist .box .img {
    width: 100%;
    border-radius: 0.2rem;
}

.projectinfolist .box .img::before {
    padding-top: 35%;
}

@media (max-width: 991px) {
    .projectinfolist .box .img::before {
        padding-top: 120%;
    }
}

@media (max-width: 991px) {
    .projectinfolist .box .img img.pc-img {
        display: none;
    }
}

.projectinfolist .box .img img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .projectinfolist .box .img img.mb-img {
        display: block;
    }
}

.projectinfolist .box .text {
    position: absolute;
    z-index: 2;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5.4rem;
}

@media (max-width: 991px) {
    .projectinfolist .box .text {
        left: 0.3rem;
        width: calc(100% - 0.6rem);
    }
}

.projectinfolist .box .text .cn2 {
    color: #fff;
    line-height: 1.3125em;
}

.projectinfolist .box .text .line {
    margin: 0.35rem 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

.projectinfolist .box .text .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.03rem;
    width: 0.3rem;
    background-color: #ff0000;
}

.projectinfolist .box .text .cn3 {
    line-height: 1.75em;
    color: #fff;
}

.projectinfolist .box .text .public-btn {
    margin-top: 0.35rem;
}

.projectinfolist .box:nth-child(even) .text {
    left: auto;
    right: 0.8rem;
}

@media (max-width: 991px) {
    .projectinfolist .box:nth-child(even) .text {
        left: 0.3rem;
        right: initial;
    }
}

.projectinfo-box4 {
    background-color: #f8f8f8;
    padding-top: 0.5rem;
    padding-bottom: 1.6rem;
}

.projectinfo-box4 .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.35rem;
}

.projectinfo-box4 .project-list5 {
    padding-bottom: 0;
}

.projectinfo-box4 .project-list5 .container {
    width: 100%;
}

.projectinfo-box4 .project-list5 .container .cn2 {
    margin-top: 0.7rem;
}

.projectinfobigbox {
    width: 100%;
    background-color: #Fff;
    position: relative;
}

.product1-box1 {
    padding: 0.8rem 0 1rem;
}

.product1-box2 {
    position: relative;
}

.product1-box2 .bgimg::before {
    padding-top: 39.58333333%;
}

@media (max-width: 991px) {
    .product1-box2 .bgimg::before {
        padding-top: 120%;
    }
}

.product1-box2 .bgimg img.pc-img {
    display: block;
}

@media (max-width: 991px) {
    .product1-box2 .bgimg img.pc-img {
        display: none;
    }
}

.product1-box2 .bgimg img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .product1-box2 .bgimg img.mb-img {
        display: block;
    }
}

.product1-box2 .container {
    position: absolute;
    left: 50%;
    top: 22%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 991px) {
    .product1-box2 .container {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.product1-box2 .container .cn1 {
    color: #Fff;
}

.product1-box2 .container .cn1 span {
    color: #Fff;
    display: block;
}

.product1-box2 .container .line {
    margin: 0.35rem 0;
    width: 5.2rem;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

.product1-box2 .container .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.03rem;
    width: 0.3rem;
    background-color: #ff0000;
}

.product1-box2 .container .box {
    display: flex;
}

.product1-box2 .container .box .box2 {
    display: flex;
    align-items: center;
    padding: 0 0.2rem;
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s;
}

.product1-box2 .container .box .box2:nth-child(1) {
    padding-left: 0;
}

.product1-box2 .container .box .box2:last-child::before {
    display: none;
}

.product1-box2 .container .box .box2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #Fff;
    opacity: 0.4;
}

.product1-box2 .container .box .box2 svg {
    margin-right: 0.1rem;
    width: 0.24rem;
}

.product1-box2 .container .box .box2 svg path {
    transition: all 0.5s;
    fill: #Fff;
    opacity: 0.4;
    stroke: none;
}

.product1-box2 .container .box .box2.on {
    color: #FFf;
}

.product1-box2 .container .box .box2.on svg path {
    opacity: 1;
}

.product1-box2 .container .box .box2:hover {
    color: #FFf;
}

.product1-box2 .container .box .box2:hover svg path {
    opacity: 1;
}

.product1-box2 .container .box3 {
    margin-top: 0.35rem;
}

.product1-box2 .container .box3 .box4 {
    display: none;
}

.product1-box2 .container .box3 .box4.on {
    display: block;
}

.product1-box2 .container .box3 .box4 .cn2 {
    display: flex;
    align-items: center;
    line-height: 1.625em;
    margin-bottom: 0.1rem;
    color: #Fff;
}

.product1-box2 .container .box3 .box4 .cn2 span {
    margin-right: 0.08rem;
    flex-shrink: 0;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
}

.product1-box2 .container .public-btn {
    margin-top: 0.4rem;
}

.product4-box1 .projectinfolist {
    margin-top: 0;
}

.product4-box1 .projectinfolist .box {
    margin-top: 0;
}

.product4-box1 .projectinfolist .box .img {
    border-radius: 0;
}

.product4-box1 .projectinfolist .box .img:before {
    padding-top: 39.58333333%;
}

@media (max-width: 991px) {
    .product4-box1 .projectinfolist .box .img:before {
        padding-top: 120%;
    }
}

.product4-box1 .projectinfolist .box .container {
    z-index: 4;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product4-box1 .projectinfolist .box .container .text {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    transform: initial;
    margin: 0 auto 0 0;
}

@media (max-width: 991px) {
    .product4-box1 .projectinfolist .box .container .text {
        width: 100%;
    }
}

.product4-box1 .projectinfolist .box.choice1 .text {
    margin: 0 0 0 auto;
}

.product4-box1 .projectinfolist .box.choice2 .text {
    margin: 0 auto 0 0;
}

.product4-box1 .projectinfolist .box.black .container .text .cn2 {
    color: #000;
}

.product4-box1 .projectinfolist .box.black .container .text .line {
    background-color: rgba(0, 0, 0, 0.1);
}

.product4-box1 .projectinfolist .box.black .container .text .cn3 {
    color: #666666;
}

.product3-box1 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product3-box1 .img {
    width: 100%;
    height: 100%;
}

.product3-box1 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerscale 20s infinite linear;
}

@media (max-width: 991px) {
    .product3-box1 .img .pc-img {
        display: none;
    }
}

.product3-box1 .img .mb-img {
    display: none;
}

@media (max-width: 991px) {
    .product3-box1 .img .mb-img {
        display: block;
    }
}

.product3-box1 .videobox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product3-box1 .videobox .cn1 {
    width: 1rem;
    height: 1rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ff0000;
    position: relative;
}

.product3-box1 .videobox .cn1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ff0000;
    border-radius: 50%;
    animation: myscale 2s infinite linear;
}

.product3-box1 .videobox .cn1::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ff0000;
    border-radius: 50%;
    animation: myscale2 2s infinite linear;
}

.product3-box1 .videobox .cn1 em {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #ff0000;
    border-radius: 50%;
}

.product3-box1 .videobox .cn1 img {
    z-index: 3;
    position: relative;
    width: 20%;
}

.product3-box1 .videobox .cn2 {
    margin-top: 0.3rem;
    line-height: 1.38461538em;
    text-align: center;
    color: #ffffff;
}

@keyframes myscale {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes myscale2 {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.product3-box2 {
    background-color: #f8f8f8;
    padding: 0.9rem 0 0;
    position: relative;
    overflow: hidden;
}

.product3-box2 .container .cn1 {
    color: #000;
    line-height: 1.3125em;
}

.product3-box2 .container .line {
    margin-top: 0.45rem;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.product3-box2 .container .line::before {
    content: "";
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.product3-box2 .product3box2a {
    margin-top: 0.7rem;
    position: relative;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a {
        padding: 0.6rem 0;
    }
}

.product3-box2 .product3box2a .img.on img {
    animation: tech3box2opacity 0.5s linear 1 forwards;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
}

.product3-box2 .product3box2a .img::before {
    padding-top: 39.58333333%;
}

.product3-box2 .product3box2a .img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.product3-box2 .product3box2a .img .pc-img {
    opacity: 0;
}

.product3-box2 .product3box2a .img .pc-img.on {
    opacity: 1;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .img .pc-img {
        display: none;
    }
}

.product3-box2 .product3box2a .img .mb-img {
    display: none;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .img .mb-img {
        display: block;
    }
}

.product3-box2 .product3box2a .publicbanner2page2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.3rem !important;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .publicbanner2page2 {
        display: none;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
}

.product3-box2 .product3box2a .publicbanner2page2 .swiper-pagination-bullet {
    background-color: #Fff;
    opacity: 0.4;
}

.product3-box2 .product3box2a .publicbanner2page2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff0000;
}

.product3-box2 .product3box2a .container {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 100%;
    z-index: 3;
    top: 0;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container {
        position: relative;
        height: auto;
        width: 100%;
        left: 0;
        transform: initial;
    }
}

.product3-box2 .product3box2a .container .product3box2b {
    position: relative;
    overflow: hidden;
    height: 100%;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b {
        height: initial;
    }
}

.product3-box2 .product3box2a .container .product3box2b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b .swiper-wrapper {
        flex-wrap: wrap;
        transform: initial !important;
    }
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide {
    position: relative;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b .swiper-slide {
        width: 100% !important;
    }
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b .swiper-slide::before {
        display: none;
    }
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
    opacity: 0;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b .swiper-slide::after {
        display: none;
    }
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide .cn2 {
    z-index: 4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    bottom: 0.9rem;
    transition: all 0.5s;
    line-height: 1.5em;
}

@media (max-width: 991px) {
    .product3-box2 .product3box2a .container .product3box2b .swiper-slide .cn2 {
        padding: 0 5% 0 calc(5% + 0.2rem);
        bottom: 2.2rem;
        display: block;
        position: relative;
        left: 0;
        top: 0;
        transform: initial;
        bottom: 0;
        color: #fff;
        margin: 0.2rem 0;
        text-align: left;
        line-height: 0.4rem;
    }

    .product3-box2 .product3box2a .container .product3box2b .swiper-slide .cn2::before {
        content: "";
        position: absolute;
        left: 5%;
        top: 0.15rem;
        width: 0.1rem;
        height: 0.1rem;
        background-color: #fff;
        border-radius: 50%;
    }
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide:hover::after {
    opacity: 1;
}

.product3-box2 .product3box2a .container .product3box2b .swiper-slide:hover .cn2 {
    color: #fff;
}

.product3-box3 {
    background-color: #f8f8f8;
    padding: 0.9rem 0 0.8rem;
    position: relative;
    overflow: hidden;
}

.product3-box3 .container .cn1 {
    color: #000;
    line-height: 1.3125em;
}

.product3-box3 .container .line {
    display: none;
    margin-top: 0.45rem;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.product3-box3 .container .line::before {
    content: "";
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.product3-box3 .container .product3box3a {
    margin-top: 0.3rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.7rem;
}

.product3-box3 .container .product3box3a::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    position: absolute;
    bottom: 0.7rem;
    display: none;
}

.product3-box3 .container .product3box3a .swiper-slide {
    background-color: #Fff;
    padding: 0.7rem 0.2rem 0.6rem;
    text-align: center;
    height: auto;
}

.product3-box3 .container .product3box3a .swiper-slide .img img {
    height: 0.6rem;
}

.product3-box3 .container .product3box3a .swiper-slide .cn4 {
    margin: 0.3rem auto 0;
    width: 0.27rem;
    height: 0.05rem;
    background-color: #ff0000;
    border-radius: 0.02rem;
}

.product3-box3 .container .product3box3a .swiper-slide .cn2 {
    margin-top: 0.25rem;
    color: #000000;
    line-height: 1.5em;
}

.product3-box3 .container .product3box3a .swiper-slide .cn3 {
    color: #666666;
    line-height: 1.625em;
}

.product3-box3 .container .product3box3a .publicswiper-page {
    bottom: 0 !important;
}

.product3-box3 .container .product3box3a .publicswiper-page .swiper-pagination-bullet {
    background-color: #000;
    opacity: 0.2;
}

.product3-box3 .container .product3box3a .publicswiper-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff0000;
    opacity: 1;
}

.public-banner7 {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

@media (max-width: 991px) {
    .public-banner7 {
        height: auto;
    }
}

.public-banner7 .swiper-wrapper2 {
    height: auto;
}

.public-banner7 .swiper-wrapper2 .swiper-slide2 {
    padding: 2.2rem 0 1.15rem;
}

@media (max-width: 991px) {
    .public-banner7 .swiper-wrapper2 .swiper-slide2 {
        padding: 3rem 0 1.15rem;
    }
}

.public-banner7 .swiper-wrapper2 .swiper-slide2 .img {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.public-banner7 .swiper-wrapper2 .swiper-slide2 .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerscale 20s infinite linear;
}

@media (max-width: 991px) {
    .public-banner7 .swiper-wrapper2 .swiper-slide2 .img img.pc-img {
        display: none;
    }
}

.public-banner7 .swiper-wrapper2 .swiper-slide2 .img img.mb-img {
    display: none;
}

@media (max-width: 991px) {
    .public-banner7 .swiper-wrapper2 .swiper-slide2 .img img.mb-img {
        display: block;
    }
}

.public-banner7 .containerpublic {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
    z-index: 3;
}

@media (max-width: 991px) {
    .public-banner7 .containerpublic {
        top: 1.2rem;
    }
}

.public-banner7 .textcontainer {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.public-banner7 .textcontainer .left {
    width: 39.375%;
}

@media (max-width: 991px) {
    .public-banner7 .textcontainer .left {
        width: 100%;
    }
}

.public-banner7 .textcontainer .left .left0 {
    margin-bottom: 0.3rem;
    display: none;
}

.public-banner7 .textcontainer .left .left0 .cn0 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.public-banner7 .textcontainer .left .left0 .cn0 a {
    text-align: center;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    margin-left: 0.1rem;
    line-height: 0.3rem;
    min-width: 0.8rem;
    padding: 0 0.15rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.22rem;
    display: block;
    align-items: center;
    justify-content: center;
    color: #Fff;
    transition: all 0.5s;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .public-banner7 .textcontainer .left .left0 .cn0 a {
        line-height: 0.4rem;
    }
}

.public-banner7 .textcontainer .left .left0 .cn0 a:hover {
    border: 1px solid #ff0000;
    background-color: #ff0000;
    color: #fff;
}

.public-banner7 .textcontainer .left .left1 .cn1 {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.public-banner7 .textcontainer .left .left1 .cn1 a {
    text-align: center;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    margin-left: 0.1rem;
    line-height: 0.3rem;
    min-width: 0.8rem;
    padding: 0 0.15rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.22rem;
    display: block;
    align-items: center;
    justify-content: center;
    color: #Fff;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-banner7 .textcontainer .left .left1 .cn1 a {
        line-height: 0.4rem;
    }
}

.public-banner7 .textcontainer .left .left1 .cn1 a:hover {
    border: 1px solid #ff0000;
    background-color: #ff0000;
}

.public-banner7 .textcontainer .left .left1 .cn2 {
    margin-top: 0.05rem;
    color: #ffffff;
    line-height: 1.27777778em;
}

.public-banner7 .textcontainer .left .left1 .cn2 span {
    color: #ff0000;
}

.public-banner7 .textcontainer .left .left2 {
    margin-top: 0.42rem;
}

.public-banner7 .textcontainer .left .left2 .line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.public-banner7 .textcontainer .left .left2 .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
    border-radius: 0.02rem;
}

.public-banner7 .textcontainer .left .left2 .cn3 {
    margin-top: 0.3rem;
    line-height: 1.625em;
    color: rgba(255, 255, 255, 0.8);
}

.public-banner7 .textcontainer .left .left3 {
    margin-top: 2.1rem;
}

.public-banner7 .textcontainer .left .left3 .cn4 {
    line-height: 1.625em;
    color: rgba(255, 255, 255, 0.6);
}

.public-banner7 .textcontainer .left .left3 .cn5 {
    display: flex;
    flex-wrap: wrap;
}

.public-banner7 .textcontainer .left .left3 .cn5 .cn6 {
    text-align: center;
    margin-top: 0.1rem;
    margin-right: 0.1rem;
    line-height: 0.44rem;
    min-width: 1.57rem;
    padding: 0 0.15rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.22rem;
    display: block;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .public-banner7 .textcontainer .left .left3 .cn5 .cn6 {
        line-height: 0.76rem;
        border-radius: 0.38rem;
        font-size: 0.24rem;
    }
}

.public-banner7 .textcontainer .left .left3 .cn5 .cn6:hover {
    background-color: #ff0000;
    border: 1px solid #ff0000;
    color: #Fff;
}

.public-banner7 .textcontainer .right {
    width: 41.25%;
    border-radius: 0.2rem;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .public-banner7 .textcontainer .right {
        width: 60%;
        margin: 0.5rem auto 0;
    }
}

@media (max-width: 767px) {
    .public-banner7 .textcontainer .right {
        width: 100%;
    }
}

.public-banner7 .textcontainer .right::before {
    padding-top: 96.96969697%;
}

.public-banner7 .textcontainer .right .model-viewer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.public-banner7 .textcontainer .right .model-viewer model-viewer {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-banner7 .textcontainer .right .right1 {
    position: absolute;
    bottom: 0.3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #Fff;
}

.public-banner7 .textcontainer .right .right1 img {
    margin-right: 0.1rem;
}

.product2-box {
    background-color: #f8f8f8;
    padding: 0.8rem 0 0;
    position: relative;
}

.product2-box .prodct2-box1 {
    width: 100%;
    height: 100vh;
    position: sticky;
    left: 0;
    top: 1.5rem;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box1 {
        display: none;
    }
}

.product2-box .prodct2-box1 .container .left {
    width: 21.875%;
    padding-left: 30px;
    position: relative;
}

.product2-box .prodct2-box1 .container .left::before {
    content: "";
    position: absolute;
    left: 5px;
    width: 3px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.02rem;
}

.product2-box .prodct2-box1 .container .left .dian {
    position: absolute;
    left: 0;
    top: 8.5px;
    width: 13px;
    height: 13px;
    background-color: #Fff;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.5s;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.product2-box .prodct2-box1 .container .left .dian::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background-color: #ff0000;
}

.product2-box .prodct2-box1 .container .left .line {
    top: 0;
    position: absolute;
    left: 5px;
    width: 3px;
    height: 15px;
    background-color: #ff0000;
    border-radius: 0.02rem;
    transition: all 0.5s;
}

.product2-box .prodct2-box1 .container .left .cn1 {
    line-height: 30px;
    pointer-events: all;
    cursor: pointer;
    margin-top: 35px;
    transition: all 0.5s;
    display: block;
}

.product2-box .prodct2-box1 .container .left .cn1:nth-child(1) {
    margin-top: 0;
}

.product2-box .prodct2-box1 .container .left .cn1.on {
    color: #ff0000;
}

.product2-box .prodct2-box2 {
    margin-top: -100vh;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 1.2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box2 {
        margin-top: 0;
    }
}

.product2-box .prodct2-box2 .container {
    display: flex;
    justify-content: flex-end;
}

.product2-box .prodct2-box2 .container .right {
    pointer-events: initial;
    width: 71.5625%;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box2 .container .right {
        width: 100%;
    }
}

.product2-box .prodct2-box2 .container .right .rightbox1 {
    padding-top: 1rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1.rightbox2 .cn2 {
    margin-bottom: 0.2rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1.rightbox2 .cn8 {
    margin-bottom: 0.4rem;
    color: #666666;
    line-height: 1.625em;
}

.product2-box .prodct2-box2 .container .right .rightbox1:nth-child(1) {
    padding-top: 0;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn2 {
    display: flex;
    align-items: center;
    color: #000;
    line-height: 1.3125em;
    margin-bottom: 0.4rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn2 span {
    margin-right: 0.1rem;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn3 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn3 .cn4 {
    width: calc(100% / 3);
    padding: 0.3rem 0.3rem 0.2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box2 .container .right .rightbox1 .cn3 .cn4 {
        width: 50%;
    }
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn3 .cn4 .cn5 {
    display: block;
    color: #999999;
    line-height: 1.625em;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn3 .cn4 .cn6 {
    word-break: break-all;
    color: #333333;
    display: block;
    line-height: 1.45454545em;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .prodct2box2swiper {
    overflow: hidden;
    position: relative;
    width: 150%;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .prodct2box2swiper .swiper-slide .img {
    border-radius: 0.2rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .prodct2box2swiper .swiper-slide .img::before {
    padding-top: 64.28571429%;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .prodct2box2swiper .swiper-slide .cn7 {
    padding-right: 0.5rem;
    margin-top: 0.25rem;
    color: #333333;
    line-height: 1.5em;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box2 .container .right .rightbox1 .cn9 {
        justify-content: space-between;
    }
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 {
    height: auto;
    border-radius: 0.2rem;
    margin-right: 0.15rem;
    width: calc((100% - 0.3rem) / 3);
    margin-bottom: 0.15rem;
    background-color: #fff;
    padding: 0.8rem 0.3rem 0.5rem;
}

@media (max-width: 991px) {
    .product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 {
        width: 48%;
        margin-bottom: 0.3rem;
        margin-right: 0;
    }
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10:nth-child(3n) {
    margin-right: 0;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 .img {
    text-align: center;
    height: 0.6rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 .img img {
    height: 0.6rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 .line2 {
    width: 0.27rem;
    height: 0.05rem;
    background-color: #ff0000;
    border-radius: 0.02rem;
    margin: 0.4rem auto 0.35rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 .cn11 {
    text-align: center;
    line-height: 1.5em;
    color: #000000;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .cn9 .cn10 .cn12 {
    margin-top: 0.05rem;
    line-height: 1.625em;
    text-align: center;
    color: #666666;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 {
    display: flex;
    margin-top: 0.3rem;
    align-items: center;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 {
    margin-left: 0.15rem;
    display: flex;
    flex-shrink: 0;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swiperprev,
.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext {
    margin-left: 0.15rem;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    background-color: #Fff;
    transform: initial;
    transition: all 0.5s;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swiperprev svg,
.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext svg {
    width: 0.08rem;
    height: auto;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swiperprev svg path,
.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext svg path {
    fill: #666;
    stroke: none;
    opacity: 1;
    transition: all 0.5s;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swiperprev:hover,
.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext:hover {
    background-color: #ff0000;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swiperprev:hover svg path,
.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext:hover svg path {
    fill: #Fff;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box12 .box13 .swipernext {
    transform: rotate(180deg);
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box10 {
    width: 100%;
    height: 0.03rem;
    overflow: hidden;
    display: flex;
    position: relative;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box10 .linepage {
    width: 100%;
    height: 0.03rem;
}

.product2-box .prodct2-box2 .container .right .rightbox1 .box10 .linepage .swiper-pagination-progressbar-fill {
    background-color: #ff0000;
}

.joinpagebox1 {
    width: 100%;
    height: 280vh;
    background-color: #eee;
    position: relative;
    margin-top: -1rem;
}

.joinpagebox1 .joinpagebox1a {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    left: 0;
    top: 0;
}

.joinpagebox1 .joinpagebox1a .textbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #f8f8f8;
}

.joinpagebox1 .joinpagebox1a .textbox .cn1 {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.86rem;
    background-size: 100vw 100vh;
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-position: 50%;
    background-repeat: no-repeat;
    white-space: nowrap;
}

.joinpagebox1 .joinpagebox1a .textbox .cn2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    width: 100%;
    justify-content: center;
}

.joinpagebox1 .joinpagebox1a .textbox .cn2 img {
    margin-right: 0.1rem;
}

.joinpagebox1 .joinpagebox1a .picbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.joinpagebox1 .joinpagebox1a .picbox .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.joinpagebox1 .joinpagebox1a .picbox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joinpagebox1 .joinpagebox1a .textbox2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transform: translateY(0.6rem);
}

.joinpagebox1 .joinpagebox1a .textbox2 .container {
    display: flex;
    justify-content: flex-end;
}

.joinpagebox1 .joinpagebox1a .textbox2 .container .publicindextitle {
    width: 6.9rem;
}

.joinpagebox2 {
    padding: 1.15rem 0 0.75rem;
    background-color: #Fff;
    position: relative;
    overflow: hidden;
}

.joinpagebox2 .cn1 {
    text-align: center;
    color: #000000;
    line-height: 1.3125em;
}

.joinpagebox2 .joinpagebox2a {
    width: 65.96858639%;
    margin: 0.45rem auto 0;
}

@media (max-width: 991px) {
    .joinpagebox2 .joinpagebox2a {
        width: 90%;
    }
}

.joinpagebox2 .joinpagebox2a .swiper-slide {
    transform: scale(0.8);
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .joinpagebox2 .joinpagebox2a .swiper-slide {
        transform: scale(1);
    }
}

.joinpagebox2 .joinpagebox2a .swiper-slide.swiper-slide-active,
.joinpagebox2 .joinpagebox2a .swiper-slide.swiper-slide-duplicate-active {
    transform: scale(1);
}

.joinpagebox2 .joinpagebox2a .swiper-slide .img {
    border-radius: 0.2rem;
}

.joinpagebox2 .joinpagebox2a .swiper-slide .img::before {
    padding-top: 48.41269841%;
}

.joinpagebox2 .bigbox {
    width: 65.96858639%;
    margin: 0.4rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .joinpagebox2 .bigbox {
        width: 90%;
        flex-wrap: wrap;
    }
}

.joinpagebox2 .bigbox .joinpagebox2b {
    position: relative;
    overflow: hidden;
    width: 60%;
}

@media (max-width: 991px) {
    .joinpagebox2 .bigbox .joinpagebox2b {
        text-align: center;
        width: 100%;
    }
}

.joinpagebox2 .bigbox .box13 {
    margin-left: 0.15rem;
    display: flex;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .joinpagebox2 .bigbox .box13 {
        display: none;
        width: 100%;
        margin-top: 0.3rem;
        justify-content: center;
        margin: 0.3rem 0 0;
    }
}

.joinpagebox2 .bigbox .box13 .swiperprev,
.joinpagebox2 .bigbox .box13 .swipernext {
    margin-left: 0.15rem;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f8f8f8;
    transform: initial;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .joinpagebox2 .bigbox .box13 .swiperprev,
    .joinpagebox2 .bigbox .box13 .swipernext {
        display: flex;
        margin: 0 0.15rem;
    }
}

.joinpagebox2 .bigbox .box13 .swiperprev svg,
.joinpagebox2 .bigbox .box13 .swipernext svg {
    width: 0.08rem;
    height: auto;
}

.joinpagebox2 .bigbox .box13 .swiperprev svg path,
.joinpagebox2 .bigbox .box13 .swipernext svg path {
    fill: #666;
    stroke: none;
    opacity: 1;
    transition: all 0.5s;
}

.joinpagebox2 .bigbox .box13 .swiperprev:hover,
.joinpagebox2 .bigbox .box13 .swipernext:hover {
    background-color: #ff0000;
}

.joinpagebox2 .bigbox .box13 .swiperprev:hover svg path,
.joinpagebox2 .bigbox .box13 .swipernext:hover svg path {
    fill: #Fff;
}

.joinpagebox2 .bigbox .box13 .swipernext {
    transform: rotate(180deg);
}

.joinpagebox3 {
    padding: 0 0 1.4rem;
    background-color: #Fff;
}

.joinpagebox3 .container {
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.joinpagebox3 .container .left {
    width: 50%;
    padding-right: 1.1rem;
}

@media (max-width: 991px) {
    .joinpagebox3 .container .left {
        width: 100%;
        padding-right: 0;
    }
}

.joinpagebox3 .container .left .publicindextitle .pcn1 .pcn1b {
    color: #666666;
}

.joinpagebox3 .container .left .publicindextitle .pcn2 {
    color: #333333;
}

.joinpagebox3 .container .left .cn3 {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.55rem;
}

.joinpagebox3 .container .left .cn3 .cn4 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}

.joinpagebox3 .container .left .cn3 .cn4 .cn5 {
    width: 0.4rem;
    height: 0.4rem;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #Fff;
}

@media (max-width: 991px) {
    .joinpagebox3 .container .left .cn3 .cn4 .cn5 {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.joinpagebox3 .container .left .cn3 .cn4 .cn5 img {
    max-width: 50%;
}

.joinpagebox3 .container .left .cn3 .cn4 .cn6 {
    margin-left: 0.15rem;
    color: #333;
    line-height: 0.4rem;
}

@media (max-width: 991px) {
    .joinpagebox3 .container .left .cn3 .cn4 .cn6 {
        line-height: 0.6rem;
    }
}

.joinpagebox3 .container .right {
    width: 50%;
}

@media (max-width: 991px) {
    .joinpagebox3 .container .right {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.joinpagebox3 .container .right .img {
    border-radius: 0.2rem;
}

.joinpagebox3 .container .right .img::before {
    padding-top: 60%;
}

.joinpagebox4 .news-list3 {
    overflow: hidden;
}

.joinpagebox4 .news-list3 .container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.joinpagebox4 .news-list3 .container .cn2 .cn2box {
    width: 100%;
    display: block;
    padding-bottom: 0.25rem !important;
    margin: 0;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 1.4rem;
}

@media (max-width: 991px) {
    .joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a {
        overflow: initial;
    }
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide {
    background-color: #fff;
    border-radius: 0.2rem;
    overflow: hidden;
    position: relative;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box {
    padding: 0;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .img {
    margin: 0;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .cn3 {
    margin-top: 0.3rem;
    padding: 0 0.35rem;
    height: 1.5em;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .cn4 {
    padding: 0 0.35rem;
    margin-top: 0.2rem;
    height: 3.25em;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .cn5 {
    margin: 0 0.35rem;
    margin-top: 1rem;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .bgimg {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    opacity: 0;
    transition: all 0.75s;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide .cn2box .bgimg img {
    width: 2.27rem;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-slide:hover .cn2box .bgimg {
    right: 0;
    bottom: 0;
    opacity: 1;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .publicbanner2page {
    bottom: 0.7rem !important;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-pagination-bullet {
    background-color: #000000;
    opacity: 0.2;
}

.joinpagebox4 .news-list3 .container .cn2 .joinpagebox4a .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff0000;
    opacity: 1;
}

.joinpagebox4v {
    padding: 0;
}

.joinpagebox4v .news-list3 {
    padding-bottom: 0.95rem;
}

.joinpagebox4v .news-list3 .container {
    border-bottom: 0;
}

.tech1-box1 {
    padding-top: 1.6rem;
    margin-top: -0.55rem;
}

.tech1-box2 {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 6rem;
}

@media (max-width: 991px) {
    .tech1-box2 {
        min-height: 50vh;
    }
}

.tech1-box2 .bgimg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tech1-box2 .bgimg img {
    width: 100%;
    object-fit: cover;
}

.tech1-box2 .container {
    padding-top: 1.2rem;
    position: relative;
}

.tech1-box2 .container .cn1 {
    color: #333333;
    line-height: 1.375em;
    text-align: center;
}

@media (max-width: 991px) {
    .tech1-box2 .container .cn1 {
        font-size: 0.34rem;
    }
}

.tech1-box2 .container .box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tech1-box2 .container .box .box2 {
    margin: 0.7rem 1rem 0;
}

@media (max-width: 991px) {
    .tech1-box2 .container .box .box2 {
        margin: 0.7rem 0 0;
        width: 50%;
        padding: 0 0.3rem;
    }
}

.tech1-box2 .container .box .box2 .cn2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tech1-box2 .container .box .box2 .cn2 .cn3 {
    color: #ff0000;
}

.tech1-box2 .container .box .box2 .cn2 .cn4 {
    color: #ff0000;
}

.tech1-box2 .container .box .box2 .cn5 {
    text-align: center;
    color: #333;
    line-height: 1.625em;
    font-weight: bold;
}

.tech1-box3 {
    position: relative;
    width: 100%;
    height: 250vh;
}

@media (max-width: 991px) {
    .tech1-box3 {
        height: auto;
        padding: 1.2rem 0;
    }
}

.tech1-box3 .tech1box3a {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a {
        height: auto;
        position: relative;
    }
}

.tech1-box3 .tech1box3a .container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
}

.tech1-box3 .tech1box3a .container .enimg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65.1875%;
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container .enimg {
        display: none;
    }
}

.tech1-box3 .tech1box3a .container .enimg img {
    width: 100%;
}

.tech1-box3 .tech1box3a .container .left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container .left {
        margin-top: 0.5rem;
        width: 100%;
        position: relative;
        left: 0 !important;
        top: 0 !important;
        transform: initial !important;
    }
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container .left .img {
        display: none;
    }
}

.tech1-box3 .tech1box3a .container .left .mb-img {
    display: none;
    width: 100%;
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container .left .mb-img {
        display: block;
    }
}

.tech1-box3 .tech1box3a .container .right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 55%;
    opacity: 0;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .tech1-box3 .tech1box3a .container .right {
        top: initial !important;
        position: relative;
        width: 100%;
        right: 0 !important;
        transform: initial !important;
        opacity: 1;
    }
}

.tech1-box3 .tech1box3a .container .right .cn1 {
    color: #000000;
    line-height: 1.3125em;
}

.tech1-box3 .tech1box3a .container .right .line {
    margin: 0.45rem 0;
    width: 100%;
    height: 1px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
}

.tech1-box3 .tech1box3a .container .right .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
}

.tech1-box3 .tech1box3a .container .right .cn2 {
    line-height: 1.75em;
    color: #666;
}

.tech1-box4 .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
    position: relative;
    z-index: 4;
}

.tech1-box4 .container .line {
    width: 100%;
    height: 1px;
    margin: 0.6rem 0 0.8rem;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 4;
}

.tech1-box4 .container .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
}

.tech2-box1 {
    background-color: #F8f8f8;
    padding-top: 1.6rem;
    margin-top: -0.55rem;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b {
        padding: 0.6rem 0;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn2 {
    color: #Fff !important;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn2 {
        display: none;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    top: 60%;
    opacity: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 {
        padding: 0.15rem 5%;
        opacity: 1;
        top: 0;
        left: 0;
        transform: initial;
        position: relative;
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn99 {
        width: 100%;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn91 {
    color: #fff;
    line-height: 1.41666667em;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn91 {
        color: #fff;
        text-align: center;
        font-size: 0.34rem;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 {
    margin-top: 0.2rem;
    color: #Fff;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 {
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 .cn93 {
    display: flex;
    line-height: 30px;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 .cn93 {
        width: 100%;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 .cn93 span {
    margin-right: 0.1rem;
    transform: translateY(12px);
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFf;
}

@media (max-width: 991px) {
    .tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide .cn90 .cn92 .cn93 span {
        background-color: #fff;
    }
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide:hover .cn2 {
    opacity: 0;
}

.tech2-box1 .product3box2a .container .product3box2b .swiper-wrapper .swiper-slide:hover .cn90 {
    opacity: 1;
    top: 50%;
}

.tech2-box2 {
    background-color: #fff;
    padding: 1.1rem 0;
    position: relative;
    overflow: hidden;
}

.tech2-box2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: #Fff;
    z-index: 3;
}

@media (max-width: 991px) {
    .tech2-box2::before {
        display: none;
    }
}

.tech2-box2 .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
    position: relative;
    z-index: 4;
}

.tech2-box2 .container .line {
    width: 100%;
    height: 1px;
    margin: 0.6rem 0 0.8rem;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 4;
}

.tech2-box2 .container .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.3rem;
    height: 0.03rem;
    background-color: #ff0000;
}

.tech2-box2 .container .box {
    display: flex;
    flex-wrap: wrap;
}

.tech2-box2 .container .box .left {
    width: 44.375%;
    padding-right: 0.8rem;
    background-color: #fff;
    position: relative;
    z-index: 4;
}

@media (max-width: 991px) {
    .tech2-box2 .container .box .left {
        width: 100%;
        padding-right: 0;
    }
}

.tech2-box2 .container .box .left .tech2box2swiper1 {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 0.5rem;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .cn50 {
    display: flex;
    color: #999;
    position: absolute;
    left: 0;
    bottom: 0;
    align-items: flex-end;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .cn50 span {
    line-height: 1em;
    color: #ff0000;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .cn50 em {
    font-style: normal;
    margin: 0 0.05rem;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .swiper-slide {
    padding-bottom: 1rem;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .publicindextitle .pcn1 .pcn1b {
    color: #999999;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .publicindextitle .cn10 {
    color: #333333;
    line-height: 1.3125em;
    margin: 0.2rem 0 0.4rem;
}

.tech2-box2 .container .box .left .tech2box2swiper1 .publicindextitle .cn11 {
    color: #666666;
    line-height: 1.75em;
}

.tech2-box2 .container .box .left .swiper-pagination2 {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #999999;
}

.tech2-box2 .container .box .left .swiper-pagination2 .swiper-pagination-current {
    font-size: 0.56rem;
    color: #ff0000;
}

.tech2-box2 .container .box .left .box13 {
    margin-left: 0.15rem;
    display: flex;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.tech2-box2 .container .box .left .box13 .swiperprev,
.tech2-box2 .container .box .left .box13 .swipernext {
    margin-left: 0.15rem;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    background-color: #Fff;
    transform: initial;
    transition: all 0.5s;
    background-color: #eee;
}

@media (max-width: 991px) {
    .tech2-box2 .container .box .left .box13 .swiperprev,
    .tech2-box2 .container .box .left .box13 .swipernext {
        display: flex;
    }
}

.tech2-box2 .container .box .left .box13 .swiperprev svg,
.tech2-box2 .container .box .left .box13 .swipernext svg {
    width: 0.08rem;
    height: auto;
}

@media (max-width: 991px) {
    .tech2-box2 .container .box .left .box13 .swiperprev svg,
    .tech2-box2 .container .box .left .box13 .swipernext svg {
        width: 0.16rem;
    }
}

.tech2-box2 .container .box .left .box13 .swiperprev svg path,
.tech2-box2 .container .box .left .box13 .swipernext svg path {
    fill: #666;
    stroke: none;
    opacity: 1;
    transition: all 0.5s;
}

.tech2-box2 .container .box .left .box13 .swiperprev:hover,
.tech2-box2 .container .box .left .box13 .swipernext:hover {
    background-color: #ff0000;
}

.tech2-box2 .container .box .left .box13 .swiperprev:hover svg path,
.tech2-box2 .container .box .left .box13 .swipernext:hover svg path {
    fill: #Fff;
}

.tech2-box2 .container .box .left .box13 .swipernext {
    transform: rotate(180deg);
}

.tech2-box2 .container .box .right {
    width: 55.625%;
}

@media (max-width: 991px) {
    .tech2-box2 .container .box .right {
        margin-top: 0.5rem;
        width: 100%;
    }
}

.tech2-box2 .container .box .right .tech2box2swiper2 {
    position: relative;
}

.tech2-box2 .container .box .right .tech2box2swiper2 .img {
    border-radius: 0.2rem;
}

.tech2-box2 .container .box .right .tech2box2swiper2 .img::before {
    padding-top: 61.79775281%;
}

.tech2-box2 .container .box .right .tech2box2swiper2 .dianbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 300%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

@media (max-width: 991px) {
    .tech2-box2 .container .box .right .tech2box2swiper2 .dianbox {
        display: none;
    }
}

.tech2-box2 .container .box .right .tech2box2swiper2 .dian {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 5;
}

.tech2-box2 .container .box .right .tech2box2swiper2 .dian .dcn1 {
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000;
}

.tech2-box3 {
    background-color: #f8f8f8;
    padding: 1rem 0 0.75rem;
}

.tech2-box3 .container .cn1 {
    color: #000000;
    line-height: 1.3125em;
}

.tech2-box3 .container .cn2 {
    color: #666666;
    line-height: 1.75em;
    width: 59.375%;
    margin-top: 0.2rem;
}

@media (max-width: 1260px) {
    .tech2-box3 .container .cn2 {
        width: 100%;
    }
}

.tech2-box3 .container .cn3 {
    margin-top: 0.45rem;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.tech2-box3 .container .cn3 span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ff0000;
}

.tech2-box3 .container .cn4 {
    color: #666666;
    line-height: 1.625em;
    margin-top: 0.45rem;
    width: 71.25%;
}

@media (max-width: 1260px) {
    .tech2-box3 .container .cn4 {
        width: 100%;
    }
}

.tech2-box3 .container .cn5 {
    margin-top: 0.8rem;
    text-align: right;
}

.tech2-box3 .container .cn5 img {
    margin-left: 0.2rem;
    height: 0.74rem;
}

.tech3-box1 {
    padding-top: 1.6rem;
    padding-bottom: 1.25rem;
    margin-top: -0.55rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .tech3-box1 .container {
        display: flex;
        flex-wrap: wrap;
    }
}

.tech3-box1 .container .cn1 {
    color: #333333;
    line-height: 1.3125em;
    margin-bottom: 0.85rem;
}

@media (max-width: 991px) {
    .tech3-box1 .container .cn1 {
        width: 100%;
        order: 0;
        margin-bottom: 0;
    }
}

.tech3-box1 .container .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .tech3-box1 .container .box {
        width: 100%;
        order: 2;
        margin-top: 0.5rem;
    }
}

.tech3-box1 .container .box .box2 {
    width: 40%;
    height: 4.2rem;
    position: relative;
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 {
        width: 100%;
        display: block;
    }
}

.tech3-box1 .container .box .box2::before {
    content: "";
    height: 4.2rem;
    border-radius: 2.1rem;
    background-color: #F8f8f8;
    width: 10rem;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2::before {
        display: none;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper {
    position: relative;
    overflow: hidden;
    height: 4.2rem;
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper {
        width: 4.2rem;
        margin: 0 auto;
        overflow: initial;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide .cn2 {
    font-size: 2.4rem;
    color: #ff0000;
    line-height: 4.2rem;
    transition: all 0.5s;
    text-align: center;
    width: 4.2rem;
    padding-left: 0 !important;
    margin-left: calc(100% - 4.2rem);
}

@media (max-width: 1260px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide .cn2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide .cn2 {
        margin-left: 0 !important;
        margin: 0 auto 0 !important;
        color: #999;
        font-size: 1.6rem;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide .cn2 span {
    display: none;
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide .cn2 span {
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-active .cn2 {
        color: #ff0000;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-next {
    margin-top: -1rem;
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-next {
        margin-top: 0;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-next .cn2 {
    background-image: linear-gradient(to bottom, #d5d5d5 0%, rgba(255, 255, 255, 0.5) 50%, #fff 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    line-height: 1em;
}

@media (max-width: 1260px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-next .cn2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .swiper-slide.swiper-slide-next .cn2 {
        line-height: 4.2rem;
        font-size: 1.6rem;
        background-image: initial;
        -webkit-background-clip: initial;
        color: #999;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .cn3 {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.4rem;
    line-height: 4.2rem;
    z-index: 3;
}

@media (max-width: 1260px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .cn3 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .tech3-box1 .container .box .box2 .tech1box1swiper .cn3 {
        display: none;
    }
}

.tech3-box1 .container .box .box2 .tech1box1swiper .yuan {
    width: 4.2rem;
    height: 4.2rem;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}







.searchresult0 {
    background-color: #f8f8f8;
}

.searchresult0 .container {
    padding: 0.7rem 0;
}

.searchresult0 .container .cn1 {
    text-align: center;
    color: #000000;
    line-height: 1.3125em;
}

.searchresult0 .container .cn2 {
    text-align: center;
    color: #666666;
    line-height: 1.625em;
}

.searchresult1 {
    background-color: #f8f8f8;
}

.searchresult1 .container {
    position: relative;
}

.searchresult1 .container .public-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .searchresult1 .container .public-search .pright {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .searchresult1 .container .public-search {
        position: relative;
        top: 0;
        transform: initial;
    }
}

.searchresult2 {
    background-color: #F8f8f8;
    padding-bottom: 1rem;
}

.searchresult2 .searchresult2box1 {
    padding: 0.7rem 0;
}

.searchresult2 .searchresult2box1 .qcn1 {
    margin-top: 0.4rem;
    color: #666;
    text-align: center;
}

.searchresult2 .searchresult2box1 .qcn2 {
    text-align: center;
}

.searchresult2 .searchresult2box1 .qcn2 img {
    width: 0.8rem;
}

.searchresult2 .searchresult2box1 .scn1 {
    margin-bottom: 0.4rem;
    color: #000000;
}

.searchresult2 .searchresult2box1 .scn2 {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchresult2 .searchresult2box1 .scn2 .scn3 {
    display: flex;
    align-items: center;
    color: #999999;
    line-height: 1.625em;
    transition: all 0.5s;
}

.searchresult2 .searchresult2box1 .scn2 .scn3 img {
    width: 0.09rem;
    margin-left: 0.09rem;
}

.searchresult2 .searchresult2box1 .scn2 .scn3 svg {
    transition: all 0.5s;
    width: 0.09rem;
    margin-left: 0.09rem;
}

.searchresult2 .searchresult2box1 .scn2 .scn3 svg path {
    fill: #999;
    opacity: 1;
    stroke: none;
    transition: all 0.5s;
}

.searchresult2 .searchresult2box1 .scn2 .scn3:hover {
    color: #ff0000;
}

.searchresult2 .searchresult2box1 .scn2 .scn3:hover svg {
    transform: translateX(0.05rem);
}

.searchresult2 .searchresult2box1 .scn2 .scn3:hover svg path {
    fill: #ff0000;
}

.searchresult2 .searchresult2box1 .projectinfolist {
    margin-top: 0;
}

.searchresult2 .searchresult2box1 .projectinfolist .box:nth-child(1) {
    margin-top: 0;
}

.searchresult2 .searchresult2box1 .project-list5 {
    padding-bottom: 0;
}

.searchresult2 .searchresult2box1 .project-list5 .index-news .container {
    max-width: 100%;
    width: 100%;
}

.searchresult2 .searchresult2box1 .news-list3 {
    padding-bottom: 0;
}

.searchresult2 .searchresult2box1 .news-list3 .index-news .container {
    max-width: 100%;
    width: 100%;
}










.index-case .publicindextitle .pcn1 .pcn1b {
    color: #Fff;
}

.layui-form-select dl dd.layui-this {
    color: #Fff;
}

.topullia {
    padding: 0.1rem;
    line-height: 1.5em;
}

.swiper-scrollbar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.swiper-scrollbar-drag {
    background-color: #ff0000;
}

.about1-box .about1-box1 .zcn2 img {
    animation: myrotate20 2s linear forwards infinite;
}

.joinpagebox1 .joinpagebox1a .textbox .cn2 img {
    animation: myrotate20 2s linear forwards infinite;
}

.index-about .index-about0 .zcn2 img {
    animation: myrotate20 2s linear forwards infinite;
}

@keyframes myrotate20 {
    0% {
        transform: translateY(-0.03rem);
    }
    50% {
        transform: translateY(0.03rem);
    }
    100% {
        transform: translateY(-0.03rem);
    }
}

.joinpagebox4z .news-list3 .index-news .container .cn2 .cn2box .cn1 {
    padding: 0.2rem 0.35rem 0;
}

.index-choose{
    margin-top: 1.6rem;
}
.index-choose .left{
    width: 46%;
}
.title h5{
    color: #ff0000;
    font-size: .21rem;
    font-family: "Futura-Heavy";
    margin-bottom: .36rem;
}
.title h3{
    color: #040000;
    font-size: .45rem;
    line-height: .52rem;
    font-family: "Futura-medium";
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: .65rem;
}
.title p{
    color: #4c4341;
    font-size: .21rem;
    line-height: .3rem;
}
.index-choose .accordion-button{
    padding: 25px 0;
    font-size: .22rem;
    font-family: "Futura-medium";
    border: none;
}
.index-choose .accordion-button:focus{
    box-shadow: none;
    background: none;
}
.index-choose .accordion-button:after{
    background: none;
    width: 15px;
    text-align: center;
    height: auto;
    transition: all 0.4s ease 0s;
}
.index-choose .accordion-button:before{
    content: "-";
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    border-right: 1px solid transparent;
    text-align: center;
    transition: all 0.4s ease 0s;
    width: 15px;
    height: 100%;

}
.index-choose .accordion-body{
    padding: 0;
    padding-bottom: 20px;
}
.index-choose .accordion-body p{
    font-size: 18px;
    color: #4c4341;
    line-height: 26px;
}
.index-choose .accordion-style1 .accordion-button.collapsed:before{
    content: "+";
}
.index-choose .accordion-button:not(.collapsed){
    color: #ff0000;
    background: none;
    font-weight: bold;
}
.index-choose .accordion-collapse{
    border: none;
}
.index-choose .accordion-item{
    border-bottom: 1px solid #e8e7e7;
}

.index-choose .left .public-btn2 .public-btn0{
    border: 1px solid #040000;
    color: #040000;
    margin-top: .6rem;
}
.index-choose .left .public-btn2 .public-btn0:hover{
    color: #fff;
    border: 1px solid #fff;
}
.index-choose .right{
    width: 50%;
    border-radius: 24px;
}
.menutwo{
    display: none;
}
.index-choose .right .menutwo{
    width: 100%;
    height: 100%;
}
.index-choose .right .menutwo .pic{
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
.index-choose .container{
    display: flex;
    justify-content: space-between;
}

.index-solution{
    padding: 1.6rem 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}
.index-solution .title h3{
    margin-bottom: .3rem;
}
.index-solution .container{
    display: flex;
    justify-content: space-between;
}

.index-solution .left{
    width: 29%;
    position: relative;
}
.index-solution .right{
    width: 82%;
    position: absolute;
    right: -20%;
}


.swiper-button-prev, .swiper-button-next{
    position: relative;
    margin-top: 0;
    top: auto;
    background: none;
    border: 1px solid #040000;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white{
    background: none;
}
.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white{
    background: none;
}
.swiper-button-white i{
    font-size: 20px;
    transition: all 0.3s;
}
.swiper-button-prev{
    left: 0;
    margin-right: 10px;
}
.swiper-button-next{
    right: 0;
}
.index-solution .switch{
    display: flex;
    margin-top: 1.6rem;
}
.swiper-button-white:hover{
    background: #ff0000;
    border: 1px solid #ff0000;
}
.swiper-button-white:hover i{
    color: #fff;
}

.index-solution .swiper-slide{
    position: relative;
    height: 5.45rem;
    border-radius: 22px;
}
.index-solution .swiper-slide:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.4);*/
    border-radius: 22px;
    opacity: 0;
}
.index-solution .swiper-slide.swiper-slide-active:before{
    opacity: 1;
    background: url(/theme/luoqi/default/style/img/solution-bg2.png) no-repeat;
    background-size: cover;
}
.index-solution .swiper-slide .text{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .3rem;
    width: 100%;
}
.index-solution .swiper-slide .text h4{
    color: #fff;
    font-size: .24rem;
    /*font-family: "Futura-Heavy";*/
    text-transform: uppercase;
    margin-bottom: .15rem;
    font-weight: bold;
}
.index-solution .swiper-slide .text p{
    color: #fff;
    font-size: .18rem;
    line-height: .28rem;
    margin-right: .5rem;
}
.index-solution .swiper-slide .text a{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 26px;
    width: 2.4rem;
    color: #fff;
    font-size: .18rem;
    padding: 0;
    font-family: "Futura-Book-Italic";
    font-weight: normal;
    font-style: italic;
    margin-right: 0;
}
.index-solution .swiper-slide .text a i{
    font-size: .18rem;
}
.index-solution .swiper-slide .text-bot{
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    height: 0;
}
.index-solution .swiper-slide .text a:hover{
    border: 1px solid #ff0000;
}

.index-solution .swiper-slide.swiper-slide-active .text-bot{
    opacity: 1;
    height: auto;
}
.index-partners{
    padding: 1.6rem 0;
}
.index-partners .title h3{
    margin-bottom: .4rem;
}
.index-partners .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-partners .left{
    width: 29%;
}
.index-partners .right{
    width: 50%;
}

.index-partners .right ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.index-partners .right ul li{
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-partners .right ul li img{
    max-height: 105px;
}
.index-partners .right .swiper-slide{
    padding: 0 .4rem;
}
.index-partners .swiper-button-prev, .index-partners .swiper-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.index-news{
    padding: 0 0 1.6rem;
}
.index-news .title{
    text-align: center;
    margin-bottom: .8rem;
}
.index-news .title h3{
    margin-bottom: .3rem;
}
.index-news .swiper-slide a{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 5.76rem;
    border-radius: 22px;
    transition: all 0.3s;
}
.index-news .swiper-slide a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/theme/luoqi/default/style/img/news-bg.png)no-repeat;
    background-size: cover;
    border-radius: 22px;
}

.index-news .swiper-container{
    padding-top: 10px;
}
.index-news .swiper-slide .text{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .3rem;
}
.index-news .swiper-slide .text h4{
    color: #fff;
    font-size: .22rem;
    /*font-family: "Futura-medium";*/
    font-weight: bold;
    margin-bottom: .15rem;
    transition: all 0.3s;
}
.index-news .swiper-slide .text p{
    color: #fff;
    font-size: .17rem;
    line-height: .27rem;
    min-height: .56rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-news .swiper-slide a:hover{
    transform: translateY(-10px);
}
.index-news .swiper-slide a:hover .text h4{
    color: #e61f19;
}

.index-news .switch{
    display: flex;
    justify-content: center;
    margin-top: .7rem;
}

.index-contact{
    background: #f7f7f7;
    padding: 1.6rem 0;
}
.index-contact .list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 22px;
    padding: .45rem;
    margin-bottom: .18rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.index-contact .list h5{
    color: #626060;
    font-size: .18rem;
    font-family: 'Futura-Book';
    margin-bottom: .2rem;
}
.index-contact .list h3{
    color: #040000;
    font-size: .26rem;
    font-family: 'Futura-Heavy';
    font-weight: bold;
    text-transform: uppercase;
}
.index-contact .list a{
    color: #040000;
    border: 1px solid #040000;
}
.index-contact .list a:hover{
    color: #fff;
    border: 1px solid #ff0000;
}
.index-contact .list:last-child a{
    min-width: 3.5rem;
}
.index-contact .list:last-child span{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.index-contact .list:last-child{
    margin-bottom: 0;
}
.index-contact .list:hover{
    border: 1px solid #ff0000;
    box-shadow: 0 0 15px #dddada;
}
.index-contact .list:hover .public-btn2 .public-btn0:before{
    left: 0;
}
.index-contact .list:hover .public-btn2 .public-btn0{
    color: #fff;
    border: 1px solid #fff;
}

.index-contact .list .mail{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 45px;
    border-radius: 22px;
    color: #040000;
    border: 1px solid #040000;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    font-size: 18px;
    font-family: 'Futura-medium';
    margin-right: 10px;
}
.index-contact .list .mail input{
    color: #040000;
    font-size: 18px;
    font-family: 'Futura-medium';
    width: 2.9rem;
}
.index-contact .list .mail input::placeholder{
    color: #040000;
    font-size: 18px;
    font-family: 'Futura-medium';
}

.index-contact .container{
    padding: 0 .8rem;
}

.right-ul{
    position: fixed;
    right: 35px;
    top: 35%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
.right-ul.active{
    opacity: 1;
    z-index: 999;
}
.right-ul li{
    margin-bottom: 10px;
}
.right-ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #e61f19;
    border-radius: 100%;
}
.right-ul li i{
    color: #fff;
    font-size: 20px;
}



.bannerTwo{
    position: relative;
    height: 480px;
}
.bannerTwo h3{
    text-align: center;
    font-size: .6rem;
    font-weight: bold;
    color: #fff;
}
.bannerTwo .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}
.left_menu{
    margin-top: .5rem;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}
.left_menu ul{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ff0000;
}
.left_menu ul li{
    color: #040000;
    font-size: 20px;
    line-height: 80px;
    font-family: "Futura-medium";
    margin: 0 .37rem;
    /*padding: .35rem 0;*/
    cursor: pointer;
    position: relative;
}
.left_menu ul li a{
    color: #040000;
}
.left_menu ul li.active {
    color: #ff0000;
}
.left_menu ul li::before {
    width: 100%;
    height: 5px;
    background: #ff0000;
    content: "";
    position: absolute;
    bottom: 0;
    opacity: 0;
}
.left_menu ul li.active::before {
    background: #ff0000;
    opacity: 1;
}


.item1-one{
    padding: 1rem 0;
}
.item1-one .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item1-one .content .pic{
    width: 30%;
    border-radius: 22px;
}
.item1-one .content .text .about-logo{
    margin-bottom: .35rem;
}
.item1-one .content .text{
    width: 67%;
}
.item1-one .content .text p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.item1-one .content .text p:last-child{
    margin-bottom: 0;
}

.item1-Two{
    background: #141010;
    padding: 1rem 0;
}

.item1-Two .content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: .7rem;
    width: 75%;
    margin: 0 auto;
}
.item1-Two .content .list{
    display: flex;
    align-items: center;
}
.item1-Two .content .list .num{
    display: flex;
    align-items: flex-end;
}
.item1-Two .content .list .count-title{
    color: #fff;
    font-size: .6rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
}
.item1-Two .content .list .icon{
    margin-right: .4rem;
}
.item1-Two .content .list span{
    display: inline-block;
    color: #fff;
    font-size: .24rem;
    font-family: "Futura-medium";
    margin-left: .2rem;
    transform: translateY(-10px);
}
.item1-Two .content .list:last-child span:nth-child(2){
    color: #fff;
    font-size: .6rem;
    font-weight: bold;
    transform: translateY(0);
    margin-left: 0;
}

.about #item2{
    padding: 1rem 0;
}
.about #item2 .swiper-slide{
    position: relative;
}
.about #item2 .swiper-slide:before{
    content: '';
    position: absolute;
    top: 48%;
    width: 100%;
    height: 1px;
    z-index: 99;
    background: #e0dfdf;
}


.main-timeline{ position: relative; }
.main-timeline:before,
.main-timeline:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
/*.main-timeline:before{*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 5px;*/
/*    background: #fff;*/
/*    margin: auto 0;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*}*/
.main-timeline .timeline{
    width: 35%;
    float: left;
    margin-left: .9rem;
    position: relative;
    max-width: 4.8rem;
}
.main-timeline .timeline:nth-child(2){
    max-width: 5.8rem;
}
/*.main-timeline .timeline:after{*/
/*    content: "";*/
/*    width: 5px;*/
/*    height: 60px;*/
/*    border-left: 9px dotted #fff;*/
/*    position: absolute;*/
/*    top: 54%;*/
/*    left: 71px;*/
/*}*/
.main-timeline .timeline-content{
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}
.main-timeline .timeline-content h3{
    color: #040000;
    font-size: 26px;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-top: 25px;
}

.main-timeline .description{
    font-size: 18px;
    line-height: 28px;
    color: #4c4341;
    font-family: "Futura-Book";
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 限制行数为3 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-timeline .read-more{
    display: inline-block;
    padding-right: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}
.main-timeline .read-more:before{
    /*content: "\f0da";
    font-family: 'FontAwesome';*/
    font-size: 24px;
    position: absolute;
    top: -6px;
    right: 0;
}
.main-timeline .year{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #ff0000;
    border-radius: 100%;
    border: 4px solid #e0dfdf;
    text-align: center;
    position: absolute;
    bottom: -28px;
    z-index: 999;
}

.main-timeline .year span{
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transform: rotate(-45deg);
}
.main-timeline .timeline.bottom h3{
    margin-top: 0;
    margin-bottom: 20px;
}

.main-timeline .timeline.bottom:nth-child(3) {
    margin-left: 16%;
    max-width: 4.8rem;
}
.main-timeline .timeline.bottom:nth-child(4) {
    max-width: 4.8rem;
}
/*.main-timeline .timeline.bottom{ margin: -7.7% 0 0 7%; }*/
.main-timeline .timeline.bottom:nth-child(5n+1),
.main-timeline .timeline.bottom:last-child{ margin-left: 17%; }
.main-timeline .timeline.bottom:before{
    top: auto;
    bottom: 110px;
}
/*.main-timeline .timeline.bottom:after{*/
/*    top: auto;*/
/*    left: auto;*/
/*    bottom: 54%;*/
/*    right: 71px;*/
/*    border-color: #fff;*/
/*}*/
.main-timeline .timeline.bottom .timeline-content{
    margin: 80px 0 0 0;
    transform: translateY(-24px);
    /*padding: 15px 0 40px 50px;*/
}
.main-timeline .timeline.bottom .timeline-content:after{
    border: none;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    bottom: auto;
    top: -23px;
    left: auto;
    right: 50px;
}
.main-timeline .timeline.bottom .year{
    top: -2px;
}

.about #item2 .swiper-button-white{
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
}

.about #item2 .swiper-button-prev{
    left: 0;
}
.about #item2 .content{
    position: relative;
}
.about #item2 .swiper-button-next{
    right: 0;
}
.about #item2 .swiper-container{
    width: 90%;
    margin: 0 auto;
}
.about #item3{
    background: #f7f7f7;
    padding: 1rem 0;
}
.about #item3 .title h3{
    margin-bottom: 25px;
}
.about #item3 .title{
    text-align: center;
}
.about #item3 .title p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
}
.about #item3 .content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: .8rem;
    justify-content: center;
    width: 76%;
    margin: 0 auto;
    margin-top: .7rem;
}
.about #item3 .content .list{
    display: flex;
    align-items: center;
    /*width: 40%;*/
    /*margin-bottom: .8rem;*/
}
.about #item3 .content .list .text{
    padding: .7rem;
}
.about #item3 .content .list h4{
    color: #040000;
    font-size: 26px;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-bottom: 10px;
}
.about #item3 .content .list p{
    color: #040000;
    font-size: 24px;
    font-family: "Futura-medium";
}
.about #item4{
    padding: 1rem 0;
}
.about #item4 .container{
    position: relative;
}
.about #item4 .pic{
    border-radius: 18px;
}
.about #item4 h4{
    text-align: center;
    color: #040000;
    font-size: 22px;
    margin-top: 18px;
    font-family: "Futura-medium";
}

.about #item4 .swiper-button-white{
    position: absolute;
    right: 0;
    top: -24px;
}
.about #item4 .swiper-button-prev{
    left: auto;
    right: 45px;
}

.about .honors .content{
    width: 60%;
}


.accessories{
    margin-top: 2.5rem;
}
.accessories .container{
    max-width: 1360px;
}
.accessories .title{
    border-bottom: 1px solid #e0dfdf;
}
.accessories .content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: .8rem;
}
.accessories .content .list{
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.3s;
    padding: 25px;
}
.accessories .content .list .pic{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    margin-bottom: .35rem;
}
.accessories .content .list .pic img{
    max-height: 165px;
}
.accessories .content .list .text{
    display: flex;
    flex-flow: column;
}
.accessories .content .list .text span:nth-child(1){
    color: #040000;
    font-size: 20px;
    font-family: "Futura-medium";
}
.accessories .content .list .text span:nth-child(2){
    color: #040000;
    font-size: 24px;
    font-family: "Futura-medium";
}
.accessories .content .list .text .public-btn0{
    width: 100%;
    background: #f7f7f7;
    color: #727070;
    font-size: 18px;
    font-family: "Futura-Book";
    border: none;
    margin-top: 16px;
    padding: 0 28px;
    margin-right: 0;
}
.accessories .content .list:hover{
    border: 1px solid #ff0000;
    box-shadow: 0 0 15px #dcdcdc;
}
.accessories .content .list .text .public-btn0 span{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.3s;
}

.accessories .content .list:hover .text .public-btn2 .public-btn0::before{
    left: 0;
}
.accessories .content .list:hover .text .public-btn0 span{
    color: #fff;
}

.yema {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;

}

.yema ul {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    justify-content: center;
}

.yema ul li {
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #fff;
    margin: 0 7px;
    border-radius: 100%;
    transition: .3s;
}
.yema ul li a{
    display: block;
    width: 100%;
    height: 100%;
    color: #a8aaae;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 100%;
}
.yema ul li a:hover{
    background: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}
.yema ul li a.active{
    background: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}
.yema ul .prev {
    width: 88px;
}

.yema ul .next {
    width: 88px;
}

.yema ul li.active {
    background: #ff0000;
    color: #fff;
}


.contact-banner{
    height: 350px;
}
.contact-banner .text{
    text-align: left;
    width: 85%;
    max-width: 1360px;
}
.contact-banner .text h3{
    font-size: .48rem;
    text-align: left;
    text-transform: uppercase;
}
.contact-banner .text p{
    color: #fff;
    font-size: 18px;
    font-family: "Futura-Book";
    margin-top: 15px;
}


.contact{
    padding: 1.5rem 0;
}
.contact .title{
    margin-bottom: .6rem;
}
.contact .title h3{
    margin-bottom: 25px;
}
.contact .title p{
    color: #4c4341;
    font-size: 18px;
    font-family: "Futura-Book";
}
.contact .content{
    display: flex;
    justify-content: space-between;
}
.contact .content .left{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
}
.contact .content .info_tj{
    width: 54%;
}
.w100{
    width: 100%!important;
}
.contact .content .left .list{
    width: 48.5%;
    margin-bottom: 20px;
}
.contact .content .left .list span{
    display: block;
    color: #4a4f54;
    font-size: 18px;
    margin-bottom: 10px;
}
.contact .content .left .list i{
    font-style: normal;
    color: #ff0000;
}
.contact .content .left input{
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #dfdfdf;
    border-radius: 22px;
    color: #4a4f54;
    font-size: 18px;
}
.contact .content .left textarea{
    border: 1px solid #dfdfdf;
    width: 100%;
    border-radius: 18px;
    padding: 20px;
    height: 135px;
}
.contact .content .left .list:nth-child(6){
    display: flex;
    align-items: center;
}
.contact .content .left .list:nth-child(6) input{
    width: 14px;
    height: 14px;
    border: 1px solid #4c4341;
    padding: 0;
    border-radius: 0;
    margin-right: 15px;
}
.contact .content .left .list:nth-child(6) p{
    color: #4c4341;
    font-size: 16px;
}

.contact .content .left .list .public-btn2 .public-btn0{
    border: 1px solid #040000;
}
.contact .content .left .list .public-btn2 .public-btn0 span{
    margin-bottom: 0;
    transition: all 0.3s;
}
.contact .content .left .list .public-btn2 i{
    color: #040000;
    transition: all 0.3s;
}
.contact .content .left .list .public-btn2 .public-btn0:hover{
    border: 1px solid #ff0000;
}
.contact .content .left .list .public-btn2 .public-btn0:hover span{
    color: #fff;
}
.contact .content .left .list .public-btn2 .public-btn0:hover span i{
    color: #fff;
}
.contact .content .left .list:last-child{
    margin-bottom: 0;
    margin-top: 15px;
}

.contact .content .right{
    width: 42%;
}
.contact .content .right .lianxi{
    background: #f7f7f7;
    padding: .55rem .45rem;
    border-radius: 20px;
}
.contact .content .right .lianxi ul li{
    display: flex;
    align-items: center;
    margin-bottom: .35rem;
}
.contact .content .right .lianxi ul li .icon{
    min-width: 32px;
    margin-right: .35rem;
}
.contact .content .right .lianxi ul li:last-child{
    margin-bottom: 0;
}
.contact .content .right .lianxi ul li h4{
    color: #4c4341;
    font-size: 30px;
    font-weight: bold;
    font-family: "Futura-medium";
}
.contact .content .right .lianxi ul li p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
    font-family: "Futura-Book";
}
.contact .content .right .lianxi ul li .xian{
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    margin-top: .35rem;
}
.contact .content .right .lianxi ul li:nth-child(1) .icon{
   transform: translateY(-.15rem);
}
/*.contact .content .right .lianxi ul li:nth-child(2) .icon{*/
/*    transform: translateY(-17px);*/
/*}*/

.contact .follow{
    margin-top: .55rem;
}
.contact .follow span{
    color: #040000;
    font-family: "Futura-Book";
}
.contact .follow ul{
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.contact .follow ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    margin-right: .33rem;
}
.contact .follow ul li svg{
    color: #040000;
    transition: all 0.3s;
}
.contact .follow ul li i{
    color: #040000;
    font-size: 25px;
    transition: all 0.3s;
}
.contact .follow ul li:hover svg{
    color: #ff0000;
}
.contact .follow ul li:hover i{
    color: #ff0000;
}
.distributor .content .left .list:nth-child(5) {
    width: 31%;
}
.distributor .content .left .list:nth-child(6) {
    width: 31%;
    flex-flow: wrap;
}
.distributor .content .left .list:nth-child(6) input{
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #dfdfdf;
    border-radius: 22px;
    color: #4a4f54;
    font-size: 18px;
    margin-right: 0;
}
.distributor .content .left .list:nth-child(7) {
    width: 31%;
}
.distributor .content .left .list:nth-child(9) {
    display: flex;
    align-items: center;
}
.distributor .content .left .list:nth-child(9) input {
    width: 14px;
    height: 14px;
    border: 1px solid #4c4341;
    padding: 0;
    border-radius: 0;
    margin-right: 15px;
}


.distributor{
    padding-bottom: 0;
}
.distributor-bot{
    position: relative;
    background: #f7f7f7;
    margin-top: 1.2rem;
}
.distributor .distributor-bot .content .right{
    padding: 1rem 0;
}
.distributor .distributor-bot .content .right .lianxi{
    padding: 0;
}
.distributor-bot .pic{
    position: absolute;
    right: 0;
    height: 565px;
    width: 50%;
}

.distributor .follow{
    display: flex;
    align-items: center;
}
.distributor .follow span{
    margin-right: .35rem;
}
.distributor .follow ul{
    margin-top: 0;
}




.news .title{
    text-align: left;
}

.news-top{
    padding-top: 2rem;
    padding-bottom: 1.2rem;
    background: #f7f7f7;
}

.news-top .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.news-bot{
    padding: 1.1rem 0 0 0;
}
.news-bot .news-nav ul{
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #e0dfdf;
    padding-bottom: 50px;
}
.news-bot .news-nav ul li{
    margin-left: 10px;
}
.news-bot .news-nav ul li a{
    color: #040000;
    font-size: 20px;
    font-family: "Futura-medium";
    padding: 10px 20px;
    border-radius: 22px;
}
.news-bot .news-nav ul li a.active{
    background: #ff0000;
    color: #fff;
}
.news-bot .news-nav ul li a:hover{
    background: #ff0000;
    color: #fff;
}

.news-bot .list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid #e0dfdf;
}
.news-bot .list .pic{
    min-width: 250px;
    margin-right: .36rem;
    border-radius: 10px;
    overflow: hidden;
}
.news-bot .list .pic img{
    transition: all 0.3s;
    width: 100%;
}
.news-bot .list .text{
    margin-right: .8rem;
    width: 74%;
}
.news-bot .list .text .time{
    color: #040000;
    font-size: 16px;
    margin-bottom: 20px;
}
.news-bot .list .text h4{
    color: #040000;
    font-size: 23px;
    /*font-family: "Futura-Book";*/
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.news-bot .list .text p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-bot .list .more a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.news-bot .list:hover .text h4{
    color: #ff0000;
}
.news-bot .list:hover .more a{
    color: #fff;
    background: #ff0000;
}
.news-bot .list:hover .pic img{
    transform: scale(1.1,1.1);
}


.news-bot .list:last-child{
    border-bottom: none;
}


.news-detail{
    position: relative;
    padding-top: 2.5rem;
}
.news-detail:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: #f7f7f7;
}
.news-detail .container{
    max-width: 1360px;
}
.big-pic{
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 15px #dcdcdc;
}
.big-pic img{
    width: 100%;
}
.detail-top{
    position: relative;
}

.detail-top .content{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin-top: 1rem;
}
.detail-top .detail-title{
    margin-bottom: .5rem;
}
.detail-top .left{
    width: 80%;
}
.detail-top .time{
    color: #727070;
    font-size: 20px;
    margin-bottom: 12px;
    font-family: "Futura-Book";
}
.detail-top h3{
    color: #040000;
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
}
.detail-top h4{
    position: relative;
    color: #040000;
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 14px;
    padding-left: 14px;
}
.detail-top h4:before{
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #ff0000;
}
.detail-top p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    font-family: "Futura-Book";
}
.detail-top .share{
    width: 17%;
}
.detail-top .share h5{
    color: #ff0000;
    font-size: 16px;
    font-family: "Futura-Book";
    margin-bottom: 15px;
}
.detail-top .share ul{
    display: flex;
    align-items: center;
}
.detail-top .share li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    margin-right: .25rem;
}
.detail-top .share li svg{
    color: #ff0000;
}
.detail-top .share li i{
    font-size: 18px;
    color: #ff0000;
}


.news-detail .news-bot{
    background: #f7f7f7;
    padding: .8rem 0;
    margin-top: .7rem;
}
.news-detail .news-bot .title h3{
    font-size: .3rem;
}
.news-detail .news-bot .swiper-slide{
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.news-detail .news-bot .pic{
    position: relative;
}
.news-detail .news-bot .pic:before{
    content: '';
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.news-detail .news-bot .pic img{
    width: 100%;
}
.news-detail .news-bot .text{
    background: #fff;
    padding: 10px 20px 25px 20px;
}
.news-detail .news-bot .text h4{
    color: #141010;
    font-size: 24px;
    line-height: 32px;
    font-family: "Futura-medium";
}
.news-detail .news-bot .text .more{
    margin-top: 24px;
}
.news-detail .news-bot .text .more a{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    color: #333030;
    font-size: 18px;
    font-family: "Futura-Book";
}

.news-detail .news-bot .swiper-slide:hover{
    border: 1px solid #ff0000;
    box-shadow: 0 0 15px #cdcaca;
}
.news-detail .news-bot .swiper-slide:hover .text .more a{
    color: #ff0000;
}


.news-detail .news-bot .switch{
    display: flex;
    margin-top: 30px;
}



.policy .title{
    border-bottom: 1px solid #040000;
}
.policy .text{
    padding-top: 35px;
    padding-bottom: 1rem;
}
.policy h4{
    position: relative;
    font-size: 21px;
    color: #040000;
    padding-left: 14px;
    font-family: "Futura-medium";
    /*margin-bottom: 5px;*/
    margin-bottom: 15px;
}
.policy h4:before{
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #ff0000;
}
.policy p{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
}
.policy li{
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
}

.policy table{
    border: 1px solid #cdcaca;
    width: 100%;
    margin-bottom: 20px;
}
.policy table th{
    padding: 15px 20px;
    border-bottom: 1px solid #cdcaca;
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
}
.policy table td{
    padding: 15px 20px;
    border-bottom: 1px solid #cdcaca;
    color: #4c4341;
    font-size: 18px;
    line-height: 28px;
}
.application{
    padding-top: 2.5rem;
    padding-bottom: 1.1rem;
}

.application h4{
    color: #434040;
    font-size: .24rem;
}

.application .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: .4rem;
    margin-bottom: .8rem;
}
.application .content .list{
    transition: all 0.3s;
}
.application .content .pic{
    transition: all 0.3s;
    border-radius: 22px;
    border: 1px solid transparent;
}
.application .content .pic a{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    width: 100%;
    height: 4.2rem;
    padding: .35rem;
    border-radius: 22px;
    transition: all 0.3s;
}
.application .content .list h3{
    color: #040000;
    font-size: .24rem;
    font-family: "Futura-medium";
    margin-top: 20px;
    padding: 0 .35rem;
}

.application .content .list:hover .pic{
    border: 1px solid #ff0000;
    box-shadow: 0 0 15px #d2d0d0;
}


.application .content .list:hover a{
    background: #fff;
}

.application-bot h4{
    color: #434040;
    font-size: .24rem;
}
.application-bot .mail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 8.7rem;
    border-radius: 32px;
    background: #f7f7f7;
    padding: 0 .3rem;
    margin-top: 22px;
}
.application-bot .mail input{
    height: .77rem;
    width: 100%;
}
.application-bot .mail input::placeholder{
    color: #a19f9f;
    font-size: 18px;
    font-family: "Futura-Book";
}
.application-bot .mail input{
    font-size: 18px;
    font-family: "Futura-Book";
    color: #040000;
}
.application-bot ul{
    margin-top: 25px;
}
.application-bot li{
    position: relative;
    color: #040000;
    font-size: 18px;
    padding-left: 15px;
    margin-bottom: 4px;
}
.application-bot li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ff0000;
}
.application-bot .public-btn2{
    margin-top: 30px;
}
.application-bot .public-btn2 a{
    border: 1px solid #040000;
    color: #040000;
}
.application-bot .public-btn2 a:hover{
    color: #fff;
}


.video .list{
    cursor: pointer;
    border-radius: 22px;
    overflow: hidden;
    padding: 19px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.video .list .pic{
    position: relative;
    border-radius: 0;
    width: 100%;
    height: 290px;
    margin-bottom: 30px;
    border: none;
    border-radius: 8px;
}
.video .list .pic .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;
}
.video .list .pic:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    transition: all 0.3s;
    border-radius: 8px;
}
.video .list .pic span{
    position: absolute;
    bottom: 12px;
    right: 14px;
    color: #fff;
    font-size: 12px;
}
.video .list .text .time{
    color: #4c4341;
    font-size: 14px;
    font-family: "Futura-Book";
}
.video .list .text h3{
    color: #040000;
    font-size: 21px;
    font-family: "Futura-medium";
    padding-left: 0;
    margin-bottom: 22px;
    margin-top: 10px;
}
.video .list .text p{
    color: #4c4341;
    font-size: 14px;
    font-family: "Futura-Book";
    margin-bottom: 12px;
}

.video .list:hover{
    border: 1px solid #ff0000;
}
.video .content .list:hover .pic{
    border: none;
}
.video .content .list:hover .pic:before{
    opacity: 0;
}


.video-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}

.video-box video{
    width: 100%;
}

.video-box.active {
    z-index: 9991;
    opacity: 1;
}
.model {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.51);
    z-index: -1;
    opacity: 0;
}
.model.active {
    z-index: 999;
    opacity: 1;
}


.buy .title{
    padding-bottom: 28px;
}
.buy .title h3{
    margin-bottom: 20px;
}
.buy .title p{
    color: #4c4341;
    font-size: 18px;
    font-family: "Futura-Book";
}
.buy .item{
    padding-top: .5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0dfdf;
}
.buy .item h4{
    color: #434040;
    font-size: .3rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
}
.buy .item .list .pic{
    max-width: 80%;
    height: 280px;
    margin: 0 auto;
}
.buy .item .list .pic img{
    max-height: 165px;
}
.buy .item .list .text .public-btn2 span{
    color: #727070;
    font-size: 18px;
}

.buy .buy-bot{
    background: #f7f7f7;
    padding: 1rem 0 2rem;
    scroll-margin-top: 100px;
}
.buy .buy-bot .content{
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
}
.buy .buy-bot .content .list{
    padding: 0;
}
.buy .buy-bot .content .list .pic{
    max-width: 100%;
    background: #ff9817;
    height: 190px;
    border-radius: 12px;
}
.buy .buy-bot .title{
    border: none;
}

.buy .buy-bot .content .list .public-btn0{
    border: 1px solid #000000;
    width: 80%;
    margin: 0 auto;
}
.buy .buy-bot .content .list .public-btn0 span{
    font-size: .2rem;
}
.buy .buy-bot .content .list:hover{
    border: 1px solid transparent;
    box-shadow: none;
}

.buy .buy-bot .content .list:hover .public-btn0{
    border: 1px solid #ff0000;;
}




.faq .title{
    border-bottom: 1px solid #040000;
}
.faq .index-choose{
    margin-top: 0;
}
.faq .index-choose .accordion-item {
    border-bottom: 1px solid #040000;
}
.faq .index-choose .accordion-item:last-child {
    border-bottom: none;
}
.faq .index-choose .accordion-body{
    margin: 0 40px;
    background: #f7f7f7;
    padding: 25px 28px;
    margin-bottom: 40px;
}
.faq .index-choose .accordion-button:before{
    right: 20px;
}


.faq-bot{
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}
.faq-bot h3{
    font-size: .3rem;
    text-transform: uppercase;
    font-family: "Futura-Heavy";
    font-weight: bold;
    color: #040000;
    margin-bottom: .45rem;
}
.faq-bot .mail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 6.7rem;
    border-radius: 32px;
    background: #efefef;
    padding: 0 .3rem;
    margin-top: 22px;
}

.faq-bot .mail input {
    height: 50px;
    width: 100%;
    font-size: 18px;
    font-family: "Futura-Book";
    color: #040000;
}
.faq-bot .mail input::placeholder{
    font-size: 18px;
    font-family: "Futura-Book";
    color: #040000;
}
.faq-bot .check{
    display: flex;
    align-items: center;
    padding-left: 25px;
    margin-top: 24px;
}
.faq-bot .check input{
    width: 14px;
    height: 14px;
    border: 1px solid #4c4341;
}
.faq-bot .check p{
    color: #4c4341;
    font-size: 16px;
    margin-left: 15px;
    font-family: "Futura-Book";
}


.products .item{
    border-bottom: none;
    padding-bottom: 0;
}

.products .item .content .public-btn2 span {
    color: #727070!important;
    font-size: 18px!important;
    font-family: "Futura-Book"!important;
}
.products .item .content .list:hover .public-btn2 span{
    color: #fff!important;
}

.products-detail{
    padding-top: 2rem;
}


.products-top .content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.products-top .left{
    width: 50%;
}

.products-top .slider-for .slick-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: .7rem;
}
.products-top .slick-list{
    height: 100%;
}
.products-top .slick-track{
    height: 100%;
}
.products-top .slider-for{
    height: 7.55rem;
    background: #f7f7f7;
    cursor: pointer;
}
.products-top .slider-nav .slick-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    /*max-width: 125px;*/
    /*min-height: 125px;*/
    background: #f7f7f7;
    border-radius: 8px;
    margin-right: 6px;
    position: relative;
}
.products-top .slider-nav .slick-slide img{
    width: 80%;
}
.products-top .slider-nav .slick-list{
    padding-bottom: 10px;
}
.products-top .slider-nav .slick-current:before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ff0000;
}


.products-top .slick-arrow{
    top: auto;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: 1px solid #a5a3a3;
    border-radius: 100%;
    transform: none;
    z-index: 99;
    transition: all 0.3s;
}
.products-top .slick-prev{
    left: 30px;
}
.products-top .slick-next{
    right: 30px;
}
.products-top .slick-prev:before{
    color: #a5a3a3;
    transition: all 0.3s;
}
.products-top .slick-next:before{
    color: #a5a3a3;
    transition: all 0.3s;
}

.products-top .slick-arrow:hover{
    border: 1px solid #ff0000;
}
.products-top .slick-arrow:hover:before{
    color: #ff0000;
}
.products-top{
    position: relative;
}
.product-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 1000px;
    z-index: -1;
    opacity: 0;
    background: #fff;
    padding: 1rem;
    transition: all 0.3s;
    border-radius: 20px;
}
.product-box .pic{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-box img{
    width: 100%;
    max-height: 500px;
}
.product-box.active{
    z-index: 9911;
    opacity: 1;
}
.product-box .swiper-button-white{
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
}
.product-box .swiper-button-prev{
    left: 0;
}
.product-box .swiper-button-next{
    right: 0;
}
.products-top .left{
    position: sticky;
    top: 0;
}
.products-top .right{
    width: 46%;
    position: sticky;
}
.products-top .right h3{
    color: #040000;
    font-size: .48rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-bottom: .25rem;
}
.products-top .right .p1{
    color: #3f3532;
    font-size: .21rem;
    font-family: "Futura-medium";
    margin-bottom: .2rem;
}
.products-top .right .star{
    display: flex;
    align-items: center;
}
.products-top .right .star ul{
    display: flex;
    margin-right: .3rem;
}
.products-top .right .star ul li{
    margin-right: 4px;
}
.products-top .right .star ul .fa-star{
    color: #ff0000;
}
.products-top .right .star ul .fa-star-o{
    color: #ff0000;
}
.products-top .right .star span{
    color: #4c4341;
    font-size: 14px;
}

.products-top .right .jiage{
    display: flex;
}
.products-top .right .jiage .public-btn0{
    border: 1px solid #ff0000;
    color: #ff0000;
    font-size: .18rem;
    font-family: "Futura-medium";
}
.products-top .right .jiage .public-btn0 i{
    font-style: normal;
    font-size: .24rem;
    font-weight: bold;
    font-family: "Futura-Heavy";
    margin-left: 0;
}
.products-top .right .jiage{
    margin-top: .32rem;
    margin-bottom: .4rem;
}
.products-top .right .jiage .public-btn0:hover{
    color: #fff;
}
.products-top .right .jiage .public-btn0.active{
    color: #fff;
}
.products-top .right .jiage .public-btn0.active:before{
    left: 0;
}


.products-top .right .introduction li{
    position: relative;
    color: #3f3532;
    font-size: 18px;
    font-family: "Futura-Book";
    margin-bottom: 10px;
    padding-left: 15px;
}
.products-top .right .introduction li:before{
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #ff0000;
}
.products-top .right .models{
    margin-top: .3rem;
}
.products-top .right h4{
    color: #3f3532;
    font-size: .23rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-bottom: .2rem;
}
.products-top .right .models select{
    width: 100%;
    border: 1px solid #efefef;
    padding: 20px 18px;
    border-radius: 8px;
    color: #727070;
    font-size: 18px;
    appearance: auto;
}
.products-top .right .getIt{
    margin-top: .45rem;
}
.products-top .right .getIt .index-choose{
    margin-top: 0;
}
.products-top .right .getIt .index-choose .accordion-item{
    border: 1px solid #efefef;
    border-radius: 15px;
    margin-bottom: 16px;
    overflow: hidden;
}
.products-top .right .getIt .index-choose .accordion-item.active{
    border: 1px solid #ff0000;
}
.products-top .right .getIt .index-choose .accordion-button{
    padding: .25rem .2rem;
    color: #727070;
    font-size: .18rem;
}
.products-top .right .getIt .index-choose .accordion-button:before{
    display: none;
}
.products-top .right .getIt .index-choose .accordion-button img{
    margin-right: 10px;
}
.products-top .right .getIt .index-choose .accordion-body{
    background: #f7f7f7;
    padding: 25px 30px;
}
.products-top .right .getIt .index-choose .accordion-body li{
    display: flex;
    align-items: center;
    color: #232020;
    font-size: .18rem;
    margin-bottom: 8px;
    font-family: "Futura-Book";
}
.products-top .right .getIt .index-choose .accordion-body li:last-child{
    margin-bottom: 0;
}
.products-top .right .getIt .index-choose .accordion-body li img{
    margin-right: 14px;
}

.products-top .right .gw{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
    margin-top: .5rem;
}
.products-top .right .gw > div{
    display: flex;
    align-items: center;
}
.products-top .right .gw span{
    color: #626060;
    font-size: 16px;
    margin-right: 15px;
}
.products-top .right .gw .gw_num{
    display: flex;
    justify-content: space-between;
    background: #f7f7f7;
    text-align: center;
    border-radius: 16px;
}
.products-top .right .gw .gw_num em{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
}
.products-top .right .gw .num{
    width: 44px;
    padding: 6px 0;
    font-size: 16px;
}
.products-top .right .gw .public-btn0{
    border: 1px solid #ff0000;
}
.products-top .right .gw .public-btn0 span{
    color: #ff0000;
    transition: all 0.3s;
}
.products-top .right .gw .public-btn0:hover span{
    color: #fff;
}


.pairs-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    padding-bottom: 12px;
    margin-top: .4rem;
    margin-bottom: 20px;
}

.pairs-title h4{
    margin-bottom: 0!important;
    color: #3f3532;
    font-size: .23rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
}
.pairs-title > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pairs-title .swiper-button-prev, .pairs-title .swiper-button-next{
    width: 34px;
    height: 34px;
}
.pairs-title i{
    font-size: 16px;
}

.pairs .swiper-slide .list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pairs .swiper-slide .list .list-left{
    display: flex;
    align-items: center;
}
.pairs .swiper-slide .list .list-left .pic{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    margin-right: .3rem;
}
.pairs .swiper-slide .list .list-left .pic img{
    max-width: 85%;
    max-height: 80%;
}
.pairs .swiper-slide .list .text h5{
    color: #333030;
    font-size: .18rem;
    font-family: "Futura-medium";
    margin-bottom: 10px;
}
.pairs .swiper-slide .list .text .price{
    color: #333030;
    font-size: .2rem;
    font-weight: bold;
}

.pairs .list-right a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: .52rem;
    background: #ff0000;
    color: #ffffff;
    font-size: .2rem;
    border-radius: .24rem;
    font-weight: bold;
}
.gap-3{
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    margin-top: .5rem;
    padding-top: .35rem;
    padding-left: .25rem;
    padding-right: .25rem;
}
.gap-3 ul{
    display: flex;
    flex-flow: wrap;
}
.gap-3 ul li{
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: .26rem;
}
.gap-3 ul li p{
    color: #040000;
    font-size: 16px;
    margin-left: 10px;
}
.pay{
    margin-top: .45rem;
    margin-bottom: .3rem;
}
.pay ul{
    display: flex;
    align-items: center;
    padding: 0 .25rem;
}
.pay ul li{
    margin-right: 8px;
}
.pay ul li:last-child{
    margin-right: 0;
}

.Share{
    display: flex;
    align-items: center;
    padding: 0 .25rem;
    margin-top: .3rem;
}
.Share span{
    color: #141010;
    font-size: 18px;
}
.Share ul{
    display: flex;
    align-items: center;
}
.Share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    margin-left: .25rem;
}
.Share ul li i {
    color: #141010;
    font-size: 25px;
    transition: all 0.3s;
}
.Share ul li svg{
    color: #141010;
}

.video video{
    width: 100%;
    border-radius: 20px;
}
.video .content{
    position: relative;
}
.video button{
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 99;
}

.video button svg{
    font-size: 20px;
}

#playButton button.active{
    display: none;
}


.products-mid #item1{
    background: #232020;
    padding-top: .8rem;
}
.products-mid .tool{
    margin-left: 7.5%;
}

.products-mid .tool .index-solution{
    background: none;
    font-size: .16rem;
}
.products-mid .tool .swiper-slide{
    border: 1px solid transparent;
    transition: all 0.3s;
}
.products-mid .tool .swiper-slide:hover{
    border: 1px solid #ff0000;
}
.products-mid .tool .swiper-slide .text{
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: .3rem .6rem;
}
.products-mid .tool .swiper-slide .text h4{
    font-size: .5rem;
}
.products-mid .tool .swiper-slide .text p{
    font-size: .22rem;
    line-height: .34rem;
    max-width: 3.5rem;
}
.products-mid .tool .swiper-pagination{
    margin-top: .55rem;
}
.products-mid .tool .swiper-pagination .swiper-pagination-bullet{
    background: #4a4747;
    width: .5rem;
    height: 7px;
    border-radius: 4px;
    margin-right: 11px;
}
.products-mid .tool .swiper-pagination .swiper-pagination-bullet-active{
    background: #ff0000;
    width: .88rem;
}
.products-mid .tool{
    margin-top: 1.1rem;
}
.products-mid .tool .title h3{
    color: #ffffff;
    font-size: .44rem;
    font-family: "Futura-Heavy";
}
.products-mid .tool .index-solution{
    padding-top: 0;
}
.products-mid #item1 .index-solution .swiper-slide:before{
    border-radius: 18px;
}
.outdoor{
    background: #f7f7f7;
    padding: 1.2rem 0;
}
.outdoor .title{
    text-align: center;
    margin-bottom: 1rem;
}
.outdoor .title h3{
    font-size: .48rem;
    margin-bottom: .2rem;
}
.outdoor .content{
    display: flex;
    justify-content: center;
}

.outdoor .content .list{
    text-align: center;
    width: 3rem;
    margin: 0 .5rem;
}
.outdoor .content .list .icon{
    margin-bottom: .5rem;
}
.outdoor .content .list h4{
    color: #000000;
    font-size: .24rem;
    line-height: .3rem;
    font-family: "Futura-Heavy";
    margin-bottom: .15rem;
    font-weight: bold;
}
.outdoor .content .list p{
    color: #3f3532;
    font-size: .18rem;
    line-height: .28rem;
}


.products-mid .other-brands{
    background: #fff;
    margin-left: 0;
    margin-top: 0;
    padding-left: 7.5%;
    padding-top: 1.1rem;
}
.other-brands{
    position: relative;
    overflow: hidden;
    display: none;
}
.other-brands .content{
    display: flex;
}
.other-brands .left{
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    width: 29%;
    min-height: 5.4rem;
}
.other-brands .left .switch{
    display: flex;
    transform: translateY(-20px);
}
.other-brands .right{
    position: absolute;
    right: -20%;
    width: 85%;
    min-height: 5.4rem;
}
.other-brands .left .title h3{
    font-size: .48rem;
    color: #040000;
    line-height: .56rem;
}
.products-mid .other-brands .swiper-slide .pic{
    border-radius: 20px;
}

.products-mid .other-brands .swiper-slide .text{
    position: relative;
    top: auto;
    transform: none;
    padding: .4rem 0 0;
}
.products-mid .other-brands .swiper-slide .text h4{
    color: #000000;
    font-size: .26rem;
    margin-bottom: .2rem;
    font-family: "Futura-Heavy";
}
.products-mid .other-brands .swiper-slide .text p{
    color: #3f3532;
    font-size: .18rem;
    max-width: 100%;
}

.products-mid #item2{
    margin-top: 1.3rem;
}
.products-mid #item2 .content{
    display: flex;
    justify-content: space-between;
}
.products-mid #item2 .content .left{
    width: 30%;
}
.products-mid #item2 .content .left .pic{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
}
.products-mid #item2 .content .left .pic img{
    max-width: 80%;
}
.products-mid #item2 .content .left .list{
    margin-bottom: .4rem;
}
.products-mid #item2 .content .left .list .public-btn0{
    width: 100%;
    background: #f7f7f7;
    color: #3f3532;
    font-size: .21rem;
    font-family: "Futura-medium";
}
.products-mid #item2 .content .left .list .public-btn0 span{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.products-mid #item2 .content .left .list .public-btn0:hover{
    color: #fff;
}
.custom-select {
    position: relative;
}
.custom-select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff;
    border-radius: 8px;
}
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}
.custom-select-options {
    border: none;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    top: calc(100% + 4px);
    cursor: pointer;
}
.custom-select-option.selected, .custom-select-option:hover {
    background-color: #e61f19;
    color: #fff;
}
.custom-select-option {
    padding: 11px 13px;
    border-radius: 8px;
}

.custom-select-options.active {
    display: block;
    z-index: 20;
}

.custom-select-header.active .custom-select-arrow {
    transform: rotate(180deg);
}


.products-mid #item2 .content .right{
    width: 60%;
}
.products-mid #item2 .content .right h3{
    color: #040000;
    font-size: .3rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-bottom: .25rem;
}
.products-mid #item2 .content .right table{
    width: 100%;
    border-top: 1px solid #e0dfdf;
}
.products-mid #item2 .content .right td{
    border-bottom: 1px solid #e0dfdf;
    padding: .3rem 0;
}
.products-mid #item2 .content .right td h4{
    color: #040000;
    font-size: .21rem;
    font-weight: bold;
    /*margin-bottom: .15rem;*/
}
.products-mid #item2 .content .right td li{
    color: #525050;
    font-size: .18rem;
}
.products-mid .left_menu{
    background: #232020;
}
.products-mid .left_menu ul li{
    color: #fff;
}
.products-mid #item3 .user{
    padding: 1.3rem 0;
}
.products-mid #item3 .content{
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
}
.products-mid #item3 .content .left{
    width: 35%;
}
.products-mid #item3 .content .left h3{
    color: #040000;
    font-size: .48rem;
    font-family: "Futura-Heavy";
    font-weight: bold;
    margin-bottom: .7rem;
}
.products-mid #item3 .content .left ul{
    display: flex;
    margin-top: .25rem;
    margin-bottom: 1.2rem;
}
.products-mid #item3 .content .left ul li{
    margin-right: .13rem;
}
.products-mid #item3 .content .left > div{
    display: flex;
}
.products-mid #item3 .content .left .public-btn0{
    border: 1px solid #e0dfdf;
    color: #040000;
}
.products-mid #item3 .content .left .public-btn0:hover{
    color: #fff;
}
.products-mid #item3 .content .left p{
    color: #626060;
    font-size: .16rem;
}
.products-mid #item3 .content .right{
    width: 60%;
}


.box{
    background: #f7f7f7;
    padding: 1rem 0;
}
.box .title h3{
    text-align: center;
}
.box .content{
    position: relative;
}
.box .swiper-slide ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.box .swiper-slide ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.2rem;
    background: #fff;
    border-radius: 20px;
}
.box .swiper-slide ul li img{
    max-height: 180px;
        max-width: 225px;
}
.box .swiper-button-white{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.box .swiper-button-prev{
    left: -80px;
}
.box .swiper-button-next{
    right: -80px;
}


.insights{
    background: #232020;
    padding: 1rem 0;
}
.products-mid #item3 .insights .content{
    max-width: 100%;
}
.insights .title h3{
    color: #fff;
}
.insights .list{
    padding: 20px 16px;
    border: none;
    width: 25%;
}
.insights .list .pic{
    height: 240px;
}
.insights .list .text .time{
    color: #fff;
}
.insights .list .text h3{
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insights .list .text p{
    color: #fff;
}
.insights .swiper-container{
    padding-top: 10px;
}
.insights .list:hover{
    border: none;
    background: #141010;
    transform: translateY(-10px);
}


.insights .swiper-button-prev, .insights .swiper-button-next{
    border: 1px solid #fff;
    color: #fff;
}

.insights .swiper-button-prev:hover, .insights .swiper-button-next:hover{
    border: 1px solid #e61f19;
    color: #fff;
}
.insights .switch{
    display: flex;
    margin-top: .8rem;
}

.faq .more{
    display: flex;
    justify-content: center;
    margin-top: .5rem;
}
.faq .more .public-btn0{
    border: 1px solid #0f0b0b;
    color: #0f0b0b;
}
.faq .more .public-btn0:hover{
    border: 1px solid #ff0000;
    color: #fff;
}

.product-faq{
    margin-top: 0;
    padding: 1.1rem 0;

}
.products-mid #item4{
    /*display: none;*/
}


.customer{
    padding: 1.1rem 0;
    background: #f7f7f7;
    display: none;
}
.customer .container{
    max-width: 1360px;
}
.customer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.customer-top .public-btn0{
    background: #040000;
}
.customer-mid{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d0cfcf;
    border-bottom: 1px solid #d0cfcf;
    padding: 17px 0;
    margin-top: .4rem;
}
.customer-mid > div{
    display: flex;
    align-items: center;
}
.customer-mid select{
    color: #141010;
    font-size: .18rem;
    width: 60px;
    appearance: auto;
    margin-right: 20px;
}
.customer-mid input{
    margin-left: 10px;
    font-size: 15px;
}
.customer-mid input::placeholder{
    color: #525050;
    font-size: 15px;
}
.customer-mid span{
    color: #040000;
    font-size: .18rem;
}


.customer-bot .list{
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
}
.customer-bot .pic{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 6px;
    margin-right: .4rem;
}

.customer-bot .text h3{
    color: #040000;
    font-size: .22rem;
    font-family: "Futura-medium";
    margin-bottom: .26rem;
}
.customer-bot .text h4{
    color: #232020;
    font-size: .2rem;
    font-family: "Futura-medium";
}
.customer-bot .text p{
    color: #4c4341;
    font-size: .18rem;
    line-height: .28rem;
}

.customer-bot .text .time{
    display: flex;
    justify-content: space-between;
    margin-top: .3rem;
}
.customer-bot .text .time span{
    color: #a19f9f;
    font-size: 14px;
}
.customer-bot .text .time ul{
    display: flex;
}
.customer-bot .text .time ul li i{
    color: #ff0000;
}
.customer-bot .text .reply{
    background: #fff;
    padding: .25rem .4rem;
    margin-top: .3rem;
}
.customer-bot .text .reply p{
    color: #4c4341;
    font-size: .18rem;
    line-height: .28rem;
}

.customer-bot .public-btn2{
    display: flex;
    justify-content: center;
}
.customer-bot .public-btn2 .public-btn0{
    border: 1px solid #040000;
    color: #040000;
}
.customer-bot .public-btn2 .public-btn0:hover{
    color: #fff;
    border: 1px solid #ff0000;
}

#item5 .faq-bot{
    width: max-content;
    margin: 0 auto;
}


.sub-two{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: #141010;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    border-top: 1px solid #ff0000;
    transition: all 0.3s;
    padding: 32px 0 45px;
}

.sub-two .menu{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    width: 570px;
    box-sizing: content-box;
    padding-left: 16.1%;
}
.sub-two .menu a{
    width: 50%;
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    line-height: initial!important;
}
.sub-two .menu a.active{
    color: #ff0000!important;
}
.sub-two .menu a:hover{
    color: #ff0000!important;
}
#c-header .c-nav > li:hover .sub-two{
    opacity: 1;
    top: 80px;
    visibility: visible;
}
.sub-two .sub-product{
    z-index: 99;
    margin-right: 5%;
}
.sub-two .sub-product span{
    color: #b1afaf;
    font-size: 16px;
    text-align: left;
    display: block;
}
.sub-two .sub-product .content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
    margin-top: 15px;
}
.sub-two .sub-product .content .list{
    position: relative;
    background: #fff;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}
.sub-two .sub-product .content .list .pic{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.sub-two .sub-product .content .list a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.sub-two .sub-product .content .list .text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff0000;
    transition: all 0.3s;
}
.sub-two .sub-product .content .list .text span{
    line-height: 24px;
    margin-top: 6px;
    color: #fff;
    font-weight: bold;
}
.sub-two .sub-product .content .list .text h4{
    color: #fff;
    font-size: 18px;
}
.sub-two .sub-product .content .list:hover .text{
    top: 0;
}


.public-banner2 .publicbanner2page .swiper-pagination-bullet:nth-child(1)::before {
    animation-duration: 60.1s;
}








@media (max-width: 1480px) {
    #c-header .c-nav > li {
        padding: 0 0.2rem;
    }
}
@media (max-width: 1366px) {
    #c-header .c-nav > li > .c-title-box > a{
        font-size: 16px;
    }
    #c-header .c-gn .ztop-language .cn1 span{
        font-size: 16px;
    }
    #c-header .c-gn > div{
        margin-right: 10px;
    }
}
@media (max-width: 1200px) {
    #c-header .c-right-box.c-right-box2{
        justify-content: flex-end;
    }
    .main-timeline .timeline.bottom:nth-child(4){
        margin-left: 13%!important;
    }
    #c-header .c-nav > li {
        padding: 0 10px;
    }
    #c-header .c-gn{
        margin-left: 50px;
    }
}
@media (max-width: 992px) {
    #c-header .c-right-box{
        /*display: none;*/
        width: 30%;
    }
    #c-header .c-gn{
        margin-left: 0;
    }
    #c-header .c-switch{
        margin-left: 10px;
    }
    #c-header .c-right-box.c-right-box2{
        width: 50%;
    }
    .left_menu ul li{
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .main .container{
        flex-flow: wrap;
    }
    .index-choose .left{
        width: 100%;
    }
    .index-choose .right{
        width: 100%;
    }
    .index-choose{
        margin-top: 1rem;
    }
    .title h5{
        font-size: 14px;
    }
    .title h3{
        margin-bottom: .4rem;
    }
    .index-case .indexcasea2{
        padding: 1rem 5% 2rem;
    }
    .publicindextitle .pcn1 .pcn1b{
        font-size: 14px;
    }
    .index-case .indexcasea2 .rightbox .rightbox2 .cn4{
        font-size: .4rem;
        line-height: .55rem;
    }

    .index-solution{
        padding: 1rem 0;
    }
    .index-solution .left{
        width: 100%;
        margin-bottom: .4rem;
    }
    .index-solution .right{
        width: 100%;
        position: relative;
        right: auto;
    }
    .index-solution .switch{
        margin-top: 1rem;
    }
    .index-solution .swiper-slide .text-bot{
        flex-flow: wrap;
    }
    .index-solution .swiper-slide .text h4{
        font-size: 18px;
    }
    .index-solution .swiper-slide .text p{
        font-size: 16px;
        line-height: 26px;
        margin-right: 0;
    }
    .index-solution .swiper-slide .text a{
        font-size: 14px;
        width: 200px;
        margin-top: 15px;
    }
    .index-partners{
        padding: 1rem 0;
    }
    .index-partners .left{
        width: 100%;
    }
    .index-partners .right{
        width: 100%;
        margin-top: .4rem;
    }
    .title p{
        font-size: 16px;
        line-height: 26px;
    }
    .index-news .swiper-slide a{
        height: 450px;
    }
    .index-news .swiper-slide .text h4{
        font-size: 20px;
    }
    .index-news .swiper-slide .text p{
        font-size: 16px;
        line-height: 26px;
    }
    .index-contact{
        padding: 1rem 0;
    }
    .index-contact .container{
        padding: 0;
    }
    .index-contact .list{
        flex-flow: wrap;
    }
    .index-contact .list .left{
        margin-bottom: .3rem;
    }
    .index-contact .list h5{
        font-size: 16px;
    }
    .index-contact .list h3{
        font-size: 18px;
    }
    .footer .footer1 .container .box1{
        justify-content: center;
        border-bottom: none;
    }
    .footer .footer1 .container .box1 ul{
        display: none;
    }
    .footer .footer1 .container .box2{
        display: none;
    }
    .footer .footer2 .container{
        border-top: none;
    }
    .footer .footer2 .container .left{
        display: none;
    }
    .public-banner2 .textcontainer .cn2{
        font-size: 18px;
    }
    .public-banner2{
        height: 60vh;
    }
    .right-ul{
        right: 15px;
    }
    .left_menu{
        display: none;
    }
    .item1-one .content .text .about-logo{
        max-width: 150px;
    }
    .item1-one .content{
        flex-flow: wrap;
    }
    .item1-one .content .pic{
        width: 100%;
        margin-bottom: 30px;
    }
    .item1-one .content .text{
        width: 100%;
    }
    .item1-Two .content{
        grid-template-columns: repeat(1, 1fr);
    }
    .item1-Two .content .list .icon{
        max-width: 50px;
    }
    .bannerTwo{
        height: 300px;
    }
    .bannerTwo h3{
        font-size: .5rem;
    }
    .main-timeline .timeline{
        width: 100%;
        margin-left: 0;
        max-width: 100%;
    }
    .main-timeline .timeline.bottom:nth-child(3){
        margin-left: 0;
        max-width: 100%;
    }
    .main-timeline .timeline.bottom:nth-child(4){
        margin-left: 0!important;
        max-width: 100%;
    }
    .main-timeline .year{
        display: none;
    }
    .main-timeline .timeline.bottom .timeline-content{
        display: flex;
        flex-flow: wrap;
        margin-top: 0;
    }
    .main-timeline .timeline.bottom h3{
        order: 2;
        margin-top: 25px;
    }
    .about #item2 .swiper-slide:before{
        display: none;
    }
    .main-timeline .timeline:nth-child(2){
        margin-bottom: 30px;
    }
    .about #item3 .content{
        width: 100%;
        gap: 0.4rem;
    }
    .about #item3 .content .list{
        flex-flow: wrap;
    }
    .about #item3 .content .list .pic{
        width: 100%;
    }
    .about #item3 .content .list .text{
        padding: 0;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .about #item3 .content .list h4{
        font-size: 22px;
    }
    .about #item3 .content .list p{
        font-size: 20px;
    }
    .about #item4 .swiper-button-white{
        position: relative;
        top: auto;
    }
    .about #item4 .swiper-button-prev{
        right: auto;
        top: auto;
    }
    .about #item4 .switch{
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .accessories{
        margin-top: 2rem;
    }
    .accessories .content{
        grid-template-columns: repeat(1, 1fr);
    }

    .contact{
        padding: 1rem 0;
    }
    .contact .content{
        flex-flow: wrap;
    }
    .contact .content .left{
        width: 100%;
        margin-bottom: 30px;
    }
    .contact .content .right{
        width: 100%;
    }
    .contact .content .right .lianxi ul li h4{
        font-size: 24px;
    }

    .distributor .content .left .list:nth-child(5){
        width: 100%;
    }
    .distributor .content .left .list:nth-child(6){
        width: 100%;
    }
    .distributor .content .left .list:nth-child(7){
        width: 100%;
    }
    .distributor-bot .pic{
        position: relative;
        width: 100%;
        height: 300px;
    }
    .news-bot .news-nav ul{
        flex-flow: wrap;
        justify-content: center;
        padding-bottom: 28px;
    }
    .news-bot .news-nav ul li{
        margin-bottom: 15px;
    }
    .news-top .swiper-slide{
        width: 100%;
    }
    .news-top .swiper-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    .news-bot .list{
        flex-flow: wrap;
    }
    .news-bot .list .pic{
        width: 100%;
        margin-right: 0;
    }
    .news-bot .list .text{
        margin-right: 0;
        margin-top: 20px;
    }
    .news-bot .list .more a{
        border: 1px solid #000;
        margin-top: 20px;
    }
    .news-detail:before{
        display: none;
    }
    .detail-top .left{
        width: 100%;
        margin-bottom: 30px;
    }
    .detail-top .share{
        width: 100%;
    }
    .detail-top .time{
        font-size: 18px;
    }
    .detail-top h3{
        font-size: 22px;
        line-height: 30px;
    }
    .detail-top h4{
        font-size: 20px;
        line-height: 28px;
    }
    .news-detail .news-bot .title h3{
        font-size: 24px;
    }
    .news-detail .news-bot .text h4{
        font-size: 20px;
        line-height: 28px;
    }

    .application{
        padding-top: 2rem;
    }
    .application .content{
        grid-template-columns: repeat(1, 1fr);
    }
    .application .content .list{
        margin-bottom: 20px;
    }
    .application .content .list h3{
        font-size: 20px;
    }
    .application-bot .mail{
        width: 100%;
    }
    .application-bot .mail input{
        height: 60px;
    }

    .buy .buy-bot .content {
        grid-template-columns: repeat(1, 1fr);
    }
    .buy .buy-bot .content .list .public-btn0 span{
        font-size: 16px;
    }

    .faq .index-choose .accordion-body{
        margin: 0;
        margin-bottom: 25px;
    }
    .faq .index-choose .accordion-button{
        text-align: left;
    }
    .faq .index-choose .accordion-button:before{
        right: 0;
    }
    .products-top .content{
        flex-flow: wrap;
    }
    .product-box{
        max-width: 100%;
        width: 95%;
        padding: 20px;
    }
    .products-top .left{
        width: 100%;
        position: relative;
    }
    .products-top .right{
        width: 100%;
        margin-bottom: 30px;
    }
    .products-top .right .p1{
        font-size: 16px;
    }
    .products-top .right .jiage{
        flex-flow: wrap;
    }
    .products-top .right .jiage .public-btn2{
        margin-bottom: 12px;
    }
    .products-top .right .jiage .public-btn0{
        font-size: 16px;
    }
    .products-top .right .jiage .public-btn0 i{
        font-size: 20px;
    }
    .products-top .right .introduction li{
        font-size: 16px;
    }
    .products-top .right h4{
        font-size: 20px;
    }
    .products-top .right .getIt .index-choose .accordion-button{
        font-size: 16px;
    }
    .products-top .right .getIt .index-choose .accordion-body li{
        font-size: 16px;
    }
    .products-top .right .gw > div{
        margin-bottom: 15px;
    }
    .pairs .swiper-slide .list .text h5{
        font-size: 16px;
    }
    .pairs .swiper-slide .list .text .price{
        font-size: 20px;
    }
    .pairs .swiper-slide .list .list-left .pic{
        width: 100px;
        height: 100px;
    }
    .pairs .list-right a{
        font-size: 16px;
        width: 80px;
        height: 40px;
        border-radius: 8px;
    }
    .products-top .right .models{
        margin-top: 20px;
    }
    .gap-3{
        padding-left: 0;
        padding-right: 0;
    }
    .video button{
        width: 40px;
        height: 40px;
    }
    .products-mid .tool{
        margin-left: 0;
        padding: 0 5%;
        margin-top: 40px;
    }
    .index-solution .swiper-slide{
        height: 200px;
    }
    .products-mid .tool .swiper-pagination{
        position: relative;
    }
    .products-mid .tool .swiper-slide .text p{
        font-size: 16px;
        line-height: 26px;
    }
    .products-mid .tool .swiper-slide .text h4{
        font-size: 24px;
        margin-bottom: 15px;
    }
    .outdoor{
        padding: 50px 0;
    }
    .outdoor .content{
        flex-flow: wrap;
    }
    .outdoor .content .list{
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .outdoor .content .list .icon img{
        width: 75px;
    }
    .outdoor .content .list h4{
        font-size: 20px;
    }
    .outdoor .content .list p{
        font-size: 16px;
        line-height: 26px;
    }
    .products-mid .tool .title h3{
        font-size: 24px;
    }
    .outdoor .title h3{
        font-size: 24px;
    }
    .other-brands .content{
        flex-flow: wrap;
    }
    .products-mid .other-brands{
        padding: 50px 5%;
    }
    .other-brands .left{
        width: 100%;
        min-height: auto;
    }
    .other-brands .right{
        width: 100%;
        position: relative;
        right: 0;
    }
    .other-brands .left .title h3{
        font-size: 24px;
    }
    .other-brands .left .switch{
        transform: none;
        margin-bottom: 10px;
    }
    .products-mid .other-brands .swiper-slide .text h4{
        font-size: 18px;
    }
    .products-mid .other-brands .swiper-slide .text p{
        font-size: 16px;
    }
    .products-mid #item2{
        margin-top: 0;
    }
    .products-mid #item2 .content{
        flex-flow: wrap;
    }
    .products-mid #item2 .content .left{
        width: 100%;
    }
    .products-mid #item2 .content .left .title h3{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .products-mid #item2 .content .right{
        width: 100%;
        margin-top: 30px;
    }
    .products-mid #item2 .content .left .list .public-btn0{
        font-size: 16px;
    }
    .products-mid #item2 .content .right h3{
        font-size: 20px;
    }
    .products-mid #item2 .content .right td h4{
        font-size: 18px;
    }
    .products-mid #item2 .content .right td li{
        font-size: 16px;
    }
    .products-mid #item2 .content .right td li{
        font-size: 16px;
    }
    .products-mid #item3 .content .left .public-btn0{
        font-size: 16px;
    }
    .products-mid #item3 .user{
        padding: 50px 0;
    }
    .products-mid #item3 .content{
        flex-flow: wrap;
    }
    .products-mid #item3 .content .left{
        width: 100%;
    }
    .products-mid #item3 .content .left h3{
        font-size: 24px;
        margin-bottom: 25px;
    }
    .products-mid #item3 .content .left p{
        font-size: 16px;
    }
    .products-mid #item3 .content .left ul{
        margin-bottom: 30px;
    }
    .products-mid #item3 .content .right{
        width: 100%;
        margin-top: 20px;
    }
    .box{
        padding: 50px 0;
    }
    .box .title h3{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .box .swiper-slide ul{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .box .swiper-slide ul li{
        height: 150px;
    }
    .box .swiper-slide ul li img{
        max-height: 100px;
        max-width: 90%;
    }
    .box .swiper-button-prev{
        left: 20px;
    }
    .box .swiper-button-next{
        right: 20px;
    }

    .insights .title h3{
        font-size: 24px;
    }
    .insights .list{
        padding: 0;
    }
    .product-faq{
        margin-top: 0;
        padding: 50px 0;
    }
    .product-faq .title h3{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .index-choose .accordion-button{
        font-size: 18px;
    }
    .faq .more .public-btn0{
        font-size: 16px;
    }

    .customer .title h3{
        font-size: 24px;
    }
    .customer-top{
        flex-flow: wrap;
    }
    .customer-top .public-btn0{
        font-size: 16px;
    }
    .customer-top .public-btn2{
        margin-top: 20px;
    }

    .customer-mid select{
        font-size: 16px;
    }
    .customer-mid span{
        font-size: 16px;
    }
    .customer-bot .text h3{
        font-size: 18px;
    }
    .customer-bot .text h4{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .customer-bot .text p{
        font-size: 16px;
        line-height: 24px;
    }
    .customer-bot .text .reply p{
        font-size: 16px;
    }
    .customer-bot .public-btn2 .public-btn0{
        font-size: 16px;
    }
    #item5 .faq-bot{
        width: auto;
    }
    .faq-bot .check{
        padding-left: 0;
    }

    .policy .biaoge{
        overflow: hidden;
        overflow-x: auto;
    }
    .policy .biaoge table{
        width: 1000px;
    }
    .about .honors .content{
    width: 100%;
}
.contact .content .info_tj{
     width: 100%;
}
}