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

/*字体*/
@font-face {
    font-family: 'Lato-Regular';
    src: url('../webfonts/Lato-Regular.ttf');
}

@font-face {
    font-family: 'Helvetica';
    src: url('../webfonts/Helvetica LT 75 Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'Lato-Italic';
    src: url('../webfonts/Lato-Italic.ttf');
}
@font-face {
    font-family: 'Lato-LightItalic';
    src: url('../webfonts/Lato-LightItalic.ttf');
}
@font-face {
    font-family: 'Lato-Light';
    src: url('../webfonts/Lato-Light.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: #0156d9;
}

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);
    }
}

html, body {
    min-height: 100%;
    font-family: 'Lato-Regular';
    font-weight: normal;
    font-style: normal;
    font-size: calc(100vw / 19.20);
    color: #333;
    background: #fff;
}

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

@media (max-width: 767px) {
    body {
        font-size: 0.28rem;
    }
}
p,li{
    font-weight: 100;
}
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: 90%;
    /*max-width: 16rem;*/
    max-width: 90%;
    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: #1a3064;
}

.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: #1a3064;
}

#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: #1a3064;
}

#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: #1a3064;
}

#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: .85rem;
    position: fixed;
    top: .44rem;
    left: 0;
    z-index: 900;
    width: 100%;
    text-align: center;
    color: #373737;
    transition: 0.3s;
    border-top: 1px solid #a8a8a8;
    border-bottom: 1px solid #a8a8a8;
}
#c-header.c-style2{
    background: #1c2231;
    top: 0;
}

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

}

#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%;
    }
}


#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: flex-end;
}

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

.ztop-contact a {
    position: relative;
    color: #fff;
    font-size: .18rem;
    padding: .08rem .22rem;
    margin-left: .35rem;
    border-radius: 26px;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}

/*#c-header .ztop-contact a:hover{*/
/*    color: #fff;*/
/*    background: #0156d9;*/
/*    border: 1px solid #0156d9;*/
/*}*/
.ztop-contact a:nth-child(1) {
    margin-left: 0;
}



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

#c-header.c-head-move {
    top: -1.2rem !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: flex-start;
    flex-flow: column;
    /*width: 1.5rem;*/
}
#c-header .c-logo .c-img-box p{
    font-size: .18rem;
    font-family: "Lato-Light";
    margin-top: .08rem;
    white-space: nowrap;
}
#c-header .c-logo .c-img-box img {
    width: 100%;
}


#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: #1a3064;
}

/*顶部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.2rem;
}

#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: .15rem;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

#c-header .c-nav li a {
    position: relative;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: .18rem;
    color: #ffffff;
    font-weight: 400;
}
#c-header .c-nav li a i{
    font-size: .12rem;
    margin-left: .06rem;
}
#c-header .c-nav li a {
    line-height: .85rem;
}

/*#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: #1a3064;
}

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

#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: #1a3064;
}

#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: #0156d9;*/
}

#c-header .c-nav > li.on > .c-title-box > a {
    /*color: #0156d9;*/
}
#c-header .c-nav > li.on > .c-title-box > a i{
    /*color: #0156d9;*/
    transition: all 0.3s;
}
#c-header .c-nav > li.on > .c-title-box > a:before {
    /*width: 100%;*/
    /*width: .25rem;*/
}
#c-header .c-nav li a i{
    color: #fff;
    transition: all 0.3s;
}
#c-header .c-nav li a:hover i{
    color: #0156d9;
}
/*#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: .25rem;*!*/
/*    width: 100%;*/
/*}*/
#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:hover > a:before {
    /*width: .25rem;*/
    width: 100%;
}
#c-header .c-nav li.active 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: #1a3064 !important;
}

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

/*顶部移动端导航*/
#c-header .c-nav2 {
    position: absolute;
    top: 65px;
    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;
}
#c-header .c-nav2 li .nav2{
    display: flex;
    flex-flow: column;
    width: 100%;
    padding-left: 28px;
    margin-bottom: 8px;
}
#c-header .c-nav2 li .nav2 a{
    line-height: 32px!important;
}
@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: 20px;
    height: 20px;
    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;
    font-size: 16px;
    line-height: 55px;
}

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

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

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

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

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

.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);
    background: #fff;
}

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

/* 顶部功能区 */
@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 {
        display: flex !important;
    }
}

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

#c-header .c-gn .ztop-language {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
#c-header .c-gn .ztop-language i{
    transition: all 0.3s;
}
#c-header .c-gn .ztop-language p{
    transition: all 0.3s;
}
#c-header .c-gn .ztop-language:hover i{
    color: #0156d9;
}
#c-header .c-gn .ztop-language:hover p{
    color: #0156d9;
}
#c-header .c-gn .ztop-language .cn1 {
    display: flex;
    align-items: center;
    font-size: .18rem;
    color: #fff;
}
#c-header .c-gn .ztop-language .cn1 img{
    width: .19rem;
    margin-right: .08rem;
}
#c-header .c-gn .ztop-language .cn1 i {
    font-size: .12rem;
    margin-left: .08rem;
}


#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;
    margin-right: .2rem;
}
#c-header .c-gn .ztop-search i{
    transition: all 0.3s;
}
#c-header .c-gn .ztop-search:hover i{
    color: #0156d9;
}
#c-header .c-gn > div {
    display: flex;
    align-items: center;
    margin-right: .27rem;
}

#c-header .c-gn > div:last-child {
    margin-right: 0;
}

#c-header .c-gn > div:last-child i {
    margin-left: .14rem;
    font-size: .2rem;
    color: #fff;
}

#c-header i {
    color: #fff;
    font-size: .16rem;
}

#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: #1a3064;
    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: #1a3064;
}

#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: 16px;
    }
}

.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: #1a3064;
}

.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: #1a3064;
}

@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: #1a3064;
}

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

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

.public-nav1 .pcn1:hover {
    color: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
    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: #1a3064;
}

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

.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: #1a3064;
}

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

.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: #1a3064;
    color: #Fff;
}

.public-page .num.on {
    background-color: #1a3064;
    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: #1a3064;
    color: #Fff;
}

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

.public-page .pleft.on {
    background-color: #1a3064;
    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: #1a3064;
    color: #fff;
    transition: all 0.5s;
    padding: 0 0.2rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

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

}

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

.public-btn2 {
    display: flex;
}

.public-btn2 .public-btn0 {
    color: #fff;
    /*padding: .11rem .25rem .08rem;*/
    text-align: center;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    font-size: .18rem;
    line-height: .48rem;
    padding: 0 .22rem;
    margin-right: 10px;
    border-radius: 26px;
    /*text-transform: uppercase;*/
}

.public-btn2 .public-btn0 i {
    margin-left: 10px;
}

.public-btn2 .public-btn0 span {
    display: flex;
    align-items: center;
    position: relative;
}
.public-btn2 .public-btn0 span img{
    margin-left: .12rem;
    transform: translateY(-2px);
}
.public-btn2 .public-btn0::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    background-color: #4334a2;
    transition: all 0.5s;
}

.public-btn2 .public-btn0:hover {
    border: 1px solid #4334a2;
    opacity: 1;
    color: #fff!important;
}

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

.footer {
    position: relative;
}

.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: #1a3064;
}

.footer .footer1 .container .box1 ul li:hover i {
    color: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    transition: all 0.5s;
}

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

.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: #1a3064;
    transition: all 0.5s;
}

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

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

.footer .footer2 {
    /*border-top: 1px solid #525050;*/
    background: #1a3064;
}

.index-footer .footer2 {
    background: #fff;
}

.footer .footer2 p {
    width: 100%;
    text-align: center;
    color: #b0b0b0;
    font-size: .16rem;
    padding: .35rem 0;
}

.footer .footer2 p a {
    color: #b0b0b0;
    font-size: .16rem;
}

.footer .container {
    width: 90%;
    max-width: 100%;
}

.footer .footer2 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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 form {
    display: flex;
    width: 100%;
}

.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%);
    display: flex;
}

.public-topsearch .box1 .container .box2 button svg {
    width: .2rem;
    height: .2rem;
}

.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: #1a3064;
}

.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: #0156d9;
    transition: all 0.5s;
}

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

.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: #1a3064;
}

.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;
    visibility: hidden;
}

.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: #0156d9;
}

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

.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: #1a3064;
}

.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: #1a3064;
}

.public-windows .box .left {
    width: 36.66666667%;
    display: flex;
    flex-direction: column;
    background-color: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    transition: all 0.5s;
}

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

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    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: .15rem;
    height: .15rem;
    /*border-radius: 3px;*/
    /*background-color: #000000;*/
    border: 2px solid #fff;
    background: none;
    /*opacity: 0.2;*/
    margin: 0 5px;
    transition: all 0.5s;
}


.publicswiper-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: .7rem;
    background-color: #1a3064;
    opacity: 1;
    border-radius: 8px;
}


.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: #1a3064;
    border: 1px solid #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    border: 1px solid #1a3064;
}

.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: #1a3064;
}

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

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

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

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

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

.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: #1a3064;
}

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

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

.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: #1a3064;
}

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

.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: #1a3064;
}

.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: #1a3064;
}

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

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

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

.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: #1a3064;
}

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

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

.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 .public-btn2 .public-btn0{
    margin-right: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.public-banner2 .public-btn2 .public-btn0:nth-child(1){
    opacity: 1;
    font-size: .18rem;
    text-transform: uppercase;
    border-radius: 36px;
    line-height: .7rem;
    border: none;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
    padding: 0 .7rem;
}
.public-banner2 .public-btn2 .public-btn0:nth-child(1) img{
    transform: translateY(1px);
}
.public-banner2 .public-btn2 .public-btn0:nth-child(1):before{
    background: linear-gradient(45deg, #4334a2, #4334a2);
}
.public-banner2 .public-btn2 .public-btn0:nth-child(1):before{
    /*left: 0;*/
}
.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;
    max-width: 100%;
}

.public-banner2 .textcontainer .cn1 {
    text-align: left;
    color: #ffffff;
    font-size: .5rem;
    line-height: .65rem;
    opacity: 0;
    transition: all 0.5s;
    font-family: 'Helvetica';
    transform: translateY(0.6rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.public-banner2 .textcontainer .cn2 {
    margin-top: .2rem;
    color: #ffffff;
    text-align: left;
    font-size: .22rem;
    opacity: 0;
    transition: all 0.5s 0.25s;
    transform: translateY(0.6rem);
}
.public-banner2 .textcontainer ul{
    display: flex;
    align-items: center;
    margin-top: .2rem;
}
.public-banner2 .textcontainer ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: .18rem;
    font-family: "Lato-Light";
    width: .52rem;
    height: .52rem;
    margin-right: .1rem;
}
.public-banner2 .textcontainer ul li:nth-child(odd){
    border: 1px solid #e7e1de;
}
.public-banner2 .textcontainer .time{
    border: 1px solid #e7e1de;
    color: #fff;
    font-size: .2rem;
    padding: .2rem .25rem;
    width: max-content;
    margin-top: .2rem;
    border-radius: 4px;
}
.public-banner2 .textcontainer .cn2 span {
    color: #1a3064;
}

.public-banner2 .textcontainer .cn15 {
    margin-top: 0.55rem;
    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 #1a3064;
    color: #Fff;
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet {
    position: relative;
    overflow: hidden;
    opacity: 1;
    /*background-color: rgba(255, 255, 255, 1);*/
    margin: 0 6px;
    margin-bottom: .55rem;
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
}

.public-banner2 .publicbanner2page .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: #aa67c0;
}

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

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

/*.public-banner2 .public-btn2 .public-btn0 {*/
/*    background: #0156d9;*/
/*    border: 1px solid #0156d9;*/
/*}*/


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

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

.publicbanner2page {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0 !important;
    left: 50% !important;
    z-index: 5;
    transform: translateX(-50%);
    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: #1a3064;
}

.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: #1a3064;
}

@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: #1a3064;
    border-radius: 50%;
    left: 0;
    top: 5px;
}

.publicindextitle .pcn1 .pcn1a .pcn1a2 {
    position: absolute;
    width: 5px;
    height: 14px;
    border-radius: 3px;
    background-color: #1a3064;
    left: 0px;
    top: 12px;
}

.publicindextitle .pcn1 .pcn1b {
    color: rgba(255, 255, 255, 1);
    font-size: .45rem;
    font-family: "Teko-Medium";
    text-transform: uppercase;
}

.publicindextitle .pcn2 {
    margin-top: 0.3rem;
    color: #ffffff;
    font-size: .21rem;
    line-height: .3rem;
}

.publicindextitle .public-btn2 {
    margin-top: 0.65rem;
}

.publicindextitle .public-btn2 .public-btn0 {
    /*border: 1px solid #1a3064;*/
}

.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: #1a3064;
}

.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;
}

.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 .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 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 48%;
    height: 3.2rem;
    border-top-left-radius: .62rem;
    border-top-right-radius: .62rem;
    overflow: hidden;
    margin-bottom: 0.4rem;
    position: relative;
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: .5rem .35rem .35rem;
}

@media (max-width: 991px) {
    .index-case .indexcasea2 .rightbox .rightbox2 {
        height: 5.5rem;
        width: 48.61111111%;
    }
}

.index-case .indexcasea2 .rightbox .rightbox2:nth-child(even) {
    transform: translateY(2.2rem);
}

.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: #1c2231;
    font-size: .4rem;
    line-height: .45rem;
    font-family: "Teko-Medium";
    text-align: center;
}

.index-case .indexcasea2 .rightbox .rightbox2 .cn2 {
    z-index: 2;
    position: absolute;
    color: #1a3064;
    right: 0;
    top: 0;
    padding-right: 0.25rem;
    padding-top: 0.25rem;
    transition: all 0.2s;
}


.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: #1c2231;
    font-size: .21rem;
    line-height: .3rem;
    text-align: center;
    transition: all 0.2s;
    margin-top: .28rem;
}

.index-case .indexcasea2 .rightbox .rightbox2.on {
    background-color: rgba(255, 255, 255, 1);
    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;
}




.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;
}






.layui-form-select dl dd.layui-this {
    background-color: #1a3064;
}

#c-header.sanjiheader {
    top: 0;
}

#c-header.sanjiheader .container::before {
    display: none;
}

#c-header.sanjiheader .container .bgcolor {
    display: none;
}

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



.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: #1a3064;
    transition: all 0.5s;
}

.respon-box3 .container .box1 .box1a .cn2.on {
    color: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
    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: #1a3064;
    color: #fff;
}

@media (max-width: 991px) {
    .public-windows99 .box .cn7 {
        line-height: 0.76rem;
    }
}

body .layui-laydate .layui-this {
    background-color: #1a3064 !important;
}

.layui-laydate-footer span:hover {
    color: #1a3064 !important;
}

.layui-laydate-header i:hover,
.layui-laydate-header span:hover {
    color: #1a3064 !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: #1a3064;
}

.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: #1a3064;
}

.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 #1a3064;
    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 #1a3064;
    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: #1a3064;
}

@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: #1a3064;
    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: #1a3064;
    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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
}

@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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
    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 #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

@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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    position: relative;
}

.product3-box1 .videobox .cn1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #1a3064;
    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: #1a3064;
    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: #1a3064;
    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: #1a3064;
    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%;
    }
}


.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: #1a3064;
    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: #1a3064;
    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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
    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: #1a3064;
}

.tech1-box2 .container .box .box2 .cn2 .cn4 {
    color: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
}

.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: #1a3064;
    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: #1a3064;
    }
}

.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: #1a3064;
}

.searchresult2 .searchresult2box1 .scn2 .scn3:hover svg {
    transform: translateX(0.05rem);
}

.searchresult2 .searchresult2box1 .scn2 .scn3:hover svg path {
    fill: #1a3064;
}

.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{
    height: auto;
}
.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: #1a3064;
}

.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;
}


.title h5 {
    color: #1a3064;
    font-size: .21rem;
    margin-bottom: .36rem;
}


.title p {
    color: #606060;
    font-size: .21rem;
    line-height: .3rem;
}


.swiper-button-prev, .swiper-button-next {
    position: relative;
    margin-top: 0;
    top: auto;
    background: none;
    border: 1px solid #acacac;
    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;
    color: #acacac;
    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: #0156d9;
    border: 1px solid #0156d9;
}

.swiper-button-white:hover i {
    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;
    transition: .3s;
}

.yema ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #a8aaae;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid #dcdcdc;
}

.yema ul li a:hover {
    background: #1a3064;
    color: #fff;
    border: 1px solid #1a3064;
}

.yema ul li a.active {
    background: #1a3064;
    color: #fff;
    border: 1px solid #1a3064;
}

.yema ul .prev {
    width: 88px;
}

.yema ul .next {
    width: 88px;
}

.yema ul li.active {
    background: #1a3064;
    color: #fff;
}

.yema ul li.active a {
    color: #fff;
}


.title h3 {
    color: #000;
    font-size: .5rem;
    font-family: "Helvetica";

}



.footer-top {
    background: #0156d9;
    padding: .9rem 0 .7rem;
    text-align: center;
}

.footer-top .title h3 {
    color: #ffffff;
    font-size: .45rem;
    margin-bottom: .1rem;
}

.footer-top .title p {
    color: #ffffff;
    font-size: .21rem;
    line-height: .3rem;
}



.footer-top .public-btn2 .public-btn0:hover {
    border: 1px solid #fff;
    color: #000;
}

.footer-top .public-btn2 .public-btn0:hover:before {
    background-color: #fff;
}
.footer-top .public-btn2 .public-btn0:last-child{
    margin-right: 0;
}

.footer-top .more {
    margin-top: .25rem;
}
.footer-top .more p{
    justify-content: center;
}

.footer {
    background: #1f1f24;
}
.footer .top{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.footer-logo{
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.footer .left {
    display: flex;
    flex-flow: column;
    width: 26%;
    min-width: 2.5rem;
    margin-right: .65rem;
}
.follow{
    margin-top: .15rem;
}
.follow h5{
    color: #0156d9;
    font-size: .15rem;
    font-weight: 200;
    margin-bottom: .22rem;
}
.footer .top .content{
    display: flex;
    justify-content: space-between;
}
.footer .left ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .6rem;
}

.footer .left li {
    margin-right: .35rem;
}

.footer .left li:last-child {
    margin-right: 0;
}

.footer .left li a {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 25px;*/
    /*height: 22px;*/
    /*border: 1px solid #0156d9;*/
    /*border-radius: 100%;*/
}
.footer .left li a img{
    height: .4rem;
}
.footer .left li svg {
    color: #0156d9;
    width: 18px;
}

.footer .left li i {
    font-size: 18px;
    color: #0156d9;
}

.footer .right {
    width: 70%;
}
.footer .right .content{
    display: flex;
    justify-content: space-between;
}
.footer .right h4{
    color: #ffffff;
    font-size: .24rem;
    margin-bottom: .2rem;
    font-style: italic;
}
.footer .right .links{
    display: flex;
}
.footer .right .links ul{
    margin-right: .75rem;
}
.footer .right li {
    margin-bottom: .06rem;
}

.footer .right li a {
    display: block;
    color: #ffffff;
    font-size: .18rem;
    font-family: "Lato-Light";
    transition: all 0.3s;
    line-height: .4rem;
    min-width: 1.6rem;
    border-bottom: 1px solid #f1f3fb;
}
.footer .right li a:hover{
    transform: translateX(5px);
    color: #aa67c0;
    border-bottom: 1px solid #aa67c0;
}
.footer .right .lst{
    margin-bottom: .15rem;
}
.footer .right h5{
    color: #ffffff;
    font-size: .2rem;
    margin-bottom: .08rem;
}
.footer .right p{
    color: #ffffff;
    font-size: .18rem;
    font-family: "Lato-LightItalic";
}
.footer .bot{
    border-top: 1px solid #767679;
}



.copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .28rem 0;
}
.copyright > div{
    display: flex;
}
.copyright a{
    color: #ffffff;
    font-size: .15rem;
    font-weight: 100;
}
.copyright a:hover{
    color: #14A1F6;
}
.copyright p{
    color: #bfbfbf;
    font-size: .16rem;
    font-weight: 100;
    font-family: "Lato-Light";
}


.bannerTwo{
    position: relative;
    background: #ececec;
    /*height: 3.05rem;*/
    /*margin-top: .95rem;*/
}
/*.bannerTwo:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,0.3);*/
/*}*/
.bannerTwo .container{
    display: flex;
    justify-content: center;
    flex-flow: column;
    height: 100%;
    position: relative;
}
.bannerTwo h3{
    color: #ffffff;
    font-size: .6rem;
    font-family: "Helvetica";
    font-weight: normal;
    margin-bottom: .3rem;
}
.bannerTwo h4{
    color: #ffffff;
    font-size: .36rem;
    margin-bottom: .2rem;
    margin-bottom: .2rem;
}
.bannerTwo .add{
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: .18rem;
    font-family: "Lato-Light";
}
.bannerTwo .add img{
    margin-right: .15rem;
}
.bannerTwo p{
    color: #ffffff;
    font-size: .26rem;
}
.breadcrumb-nav{
    position: absolute;
    bottom: .4rem;
}
.breadcrumb-nav ul{
    display: flex;
    align-items: center;
}
.breadcrumb-nav ul li{
    display: flex;
    align-items: center;
}
.breadcrumb-nav ul li a{
    color: #ffffff;
    font-size: .18rem;
}
.breadcrumb-nav ul li i{
    margin-right: .13rem;
}



.model{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: -1;
    transition: all 0.3s;
}
.model.active{
    z-index: 99;
    background: rgba(0,0,0,0.6);
}
.big-pic{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 10rem;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s;
}
.big-pic.active{
    z-index: 991;
    opacity: 1;
}




.header-two .c-nav .sub-menu{
    position: absolute;
    top: .8rem;
    left: 0;
    /*transform: translateX(-50%);*/
    background: #1c2231;
    /*border-radius: 25px;*/
    /*display: none;*/
    /*flex-flow: wrap;*/
    /*align-items: flex-start;*/
    /*padding: .4rem 14.5%;*/
    padding: .56rem 5%;
    width: 100%;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    margin-top: 25px;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.header-two .c-nav > li:nth-child(4) .sub-menu{
    justify-content: center;
    padding: .3rem 0!important;
}
.header-two .c-nav > li:nth-child(4) .sub-menu a{
    margin: 0 .2rem!important;
    line-height: normal!important;
}
.header-two .c-nav > li:nth-child(4) .sub-menu a:hover{
    color: #0156d9!important;
}
.header-two .c-nav > li:nth-child(6) .sub-menu{
    justify-content: center;
    padding: .3rem 0!important;
}
.header-two .c-nav > li:nth-child(6) .sub-menu a{
    margin: 0 .2rem!important;
    line-height: normal!important;
}
.header-two .c-nav > li:nth-child(6) .sub-menu a:hover{
    color: #0156d9!important;
}

.header-two .c-nav > li:nth-child(7) .sub-menu{
    justify-content: center;
    padding: .3rem 0!important;
}
.header-two .c-nav > li:nth-child(7) .sub-menu a{
    margin: 0 .2rem!important;
    line-height: normal!important;
}
.header-two .c-nav > li:nth-child(7) .sub-menu a:hover{
    color: #0156d9!important;
}

.header-two .c-nav .sub-menu .all{
    width: 100%;
    margin-bottom: .12rem;
}
.header-two .c-nav .sub-menu .all a{
    line-height: normal!important;
    text-align: left;
}
.header-two .c-nav .sub-menu .menuone{
    display: flex!important;
    flex-flow: column;
    padding-right: 16px;
}
.header-two .c-nav .sub-menu .sub-menu-box{
    display: flex;
}
.header-two .c-nav .sub-menu .sub-menu-box .pic{
    min-width: 4rem;
    max-width: 4rem;
    margin-right: .8rem;
}
.header-two .c-nav .sub-menu .sub-menu-box .title{
    margin-right: .6rem;
}
.header-two .c-nav .sub-menu .sub-menu-box .pic img{
    width: 100%;
}
.header-two .c-nav .sub-menu .sub-menu-box .title h3{
    color: #ffffff;
    font-size: .3rem;
    font-family: "Teko-Regular";
}
.header-two .c-nav .sub-menu .menuone{
    border-left: 1px solid #404040;
    border-right: 1px solid #404040;
    padding: 0 .33rem;
    margin-right: .33rem;
}
.header-two .c-nav .sub-menu .menuone li{
    /*border-radius: 8px;*/
    margin-bottom: .22rem;
    min-width: 1.9rem;
}
.header-two .c-nav .sub-menu .menuone li a{
    font-size: .18rem;
    color: #ffffff;
    font-weight: 400;
}
/*.header-two .c-nav .sub-menu .menuone li.active{*/
/*    background: #1b4077;*/
/*}*/
.header-two .c-nav .sub-menu .menuone li.active a{
    color: #14a1f6!important;
}
.header-two .c-nav .sub-menu .menuone li:last-child{
    margin-bottom: 0;
}
.header-two .c-nav .sub-menu .menuone li a{
    display: flex!important;
    justify-content: space-between!important;
    color: #ffffff!important;
    align-items: center!important;
    font-size: .18rem!important;
    line-height: normal!important;
    text-align: left;
    font-weight: 200!important;
}
.header-two .c-nav .sub-menu .menuone li a:before{
    display: none;
}
.header-two .c-nav .sub-menu .menuone li a i{
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: .2rem;*/
    /*height: .2rem;*/
    /*background: #0156d9;*/
    /*border-radius: 100%;*/
    color: #0156d9;
    opacity: 0;
    transition: all 0.3s;
}
.header-two .c-nav .sub-menu .menuone li.active a i{
    opacity: 1;
    color: #14a1f6!important;
}
.header-two .sub-menu .menutwo{
    display: none;
    text-align: left;
    width: 100%;
}
.header-two .sub-menu .menutwo ul li{
    margin-bottom: .22rem;
}
.header-two .sub-menu .menutwo ul li a{
    color: #ffffff!important;
    font-size: .18rem;
    line-height: normal!important;
    font-weight: 200!important;
}
.header-two .sub-menu .menutwo ul li a:hover{
    color: #0156d9!important;
}
.header-two .sub-menu .menutwo ul li a:before{
    display: none;
}
.header-two .menu-main{
    display: flex;
    justify-content: space-between;
    margin-left: .5rem;
    height: 100%;
}
.menu-left{
    width: 50%;
    border-right: 1px solid #0156d9;
    padding-right: .5rem;
}
.menu-left .list{
    width: 48%;
    margin-bottom: 45px;
}
.menu-left .list a{
    display: inline-block;
}
.menu-left .list h4{
    color: #0e0f3b;
    font-size: 18px;

    margin-bottom: 5px;
    transition: all 0.3s;
}
.menu-left .list p{
    color: #101010;
    font-size: 18px;
    transition: all 0.3s;
}
.menu-left .list:hover h4{
    color: #1b4077;
}
.menu-left .list:hover p{
    color: #1b4077;
}
.menu-left p{
    color: #fff;
    font-size: .18rem;
    line-height: .28rem;
    margin-bottom: .12rem;
}
.menu-right{
    width: 50%;
}
.menu-right .pic{
    max-width: 3.5rem;
    overflow: hidden;
    border-radius: 12px;
    margin-left: .5rem;
}
.menu-right .pic img{
    width: 100%;
}
.menu-right .text{
    background: #1b4077;
    padding: 16px 22px 30px;
    display: none;
}
.menu-right p{
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-family: Lato-Regular;
}
.menu-right .text a{
    font-size: 16px;
    font-family: Lato-Light
}

.menu-right .text a img{
    margin-left: 8px;
}


.header-two .c-nav > li:hover .sub-menu {
    opacity: 1;
    z-index: 8;
    visibility: visible;
    margin-top: 0;
}



.right-ul{
    position: fixed;
    right: 0;
    top: 35%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
.right-ul.active{
    opacity: 1;
    z-index: 999;
}
.right-ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: .75rem;
    height: .7rem;
    background: #4334a2;
    border-radius: 4px;
    /*border-radius: 100%;*/
}
.right-ul li:nth-child(1){
    border-bottom: 1px solid #dfdfdf;
}
.right-ul li i{
    color: #fff;
    font-size: 20px;
}
.right-ul li:nth-child(3) a{
    background: #aa67c0;
}
.right-ul li:nth-child(3){
    margin-top: .33rem;
}
.right-ul li:nth-child(3) a{
    padding: .11rem 0 .07rem;
    height: auto;
}
.right-ul li a:last-child{
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.right-ul li h4{
    color: #fff;
    font-size: .18rem;
    font-family: "Lato-Bold";
    font-weight: bold;
    margin-top: .08rem;
}







.index-case {
    width: 100%;
    background-color: #eee;
    min-height: 100vh;
    position: relative;
}

.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 .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-item1{
    padding: .7rem 0 1.4rem;
    background: url("../img/index-item1-bg.jpg") no-repeat;
    background-size: cover;
}
.index-item1 .content{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.index-item1 .content .text{
    width: 43%;
}
.index-item1 .content .text h3{
    color: #000000;
    font-size: .5rem;
    font-family: "Helvetica";
    margin-bottom: .12rem;
    margin-top: .4rem;
}
.index-item1 .content .text h4{
    color: #000000;
    font-size: .22rem;
    margin-bottom: .35rem;
}
.index-item1 .content .text p{
    color: #000000;
    font-size: .18rem;
    line-height: .36rem;
    margin-bottom: .2rem;
    font-weight: 600;
}

.index-item1 .content .text .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aa67c0;
    color: #aa67c0;
    border-radius: 26px;
    min-width: 2.35rem;
}
.index-item1 .content .text .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}
.index-item1 .content .text .public-btn2 .public-btn0:hover{
    border: 1px solid #aa67c0;
    color: #fff;
}
.index-item1 .content .text .public-btn2 .public-btn0:before{
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}
.index-item1 .content .text .public-btn2{
    margin-bottom: 0;
    margin-top: .4rem;
}
.index-item1 .about-num{
    width: 49%;
}
.index-item1 .about-num .data{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    border-top: 1px solid #2c2c2c;
}
.index-item1 .about-num .data .list{
    display: flex;
    width: 50%;
    border-bottom: 1px solid #2c2c2c;
    padding: .35rem .5rem;
}
.index-item1 .about-num .data .list:nth-child(2n){
    justify-content: flex-end;
}
.index-item1 .about-num .data .list:nth-child(2n) .num{
    width: 1.3rem;
}
.index-item1 .about-num .data .list .icon{
    display: flex;
    align-items: center;
    margin-right: .3rem;
    min-width: .5rem;
    max-width: .5rem;
}

.index-item1 .about-num .data .list .count-title{
    color: #000000;
    font-size: .6rem;
    font-weight: bold;
    font-family: "Helvetica";
}

.index-item1 .about-num .data .list .num{
    display: flex;
    align-items: flex-end;
    flex-flow: wrap;
}
.index-item1 .about-num .data .list span:nth-child(2) {
    color: #000000;
    font-size: .3rem;
    margin-left: .05rem;
    transform: translateY(-12px);
    font-weight: bold;
}
.index-item1 .about-num .data .list span:nth-child(3) {
    color: #000000;
    font-size: .2rem;
    font-weight: 200;
    width: 100%;
}

.index-item2 .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-item2 .title h3{
    font-family: "Helvetica";
}
.index-item2 .title .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aa67c0;
    color: #aa67c0;
    width: 2.3rem;
}
.public-btn0:hover{
    color: #fff;
}
.public-btn2 .public-btn0::before{
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}
.public-btn0 span{
    position: relative;
}
.public-btn0 span img{
    position: absolute;
    transition: all 0.3s;
    transform: translateY(1px);
}
.public-btn0 span:nth-child(2){
    width: 22px;
}
.public-btn0:hover span img:nth-child(1){
    opacity: 1;
}
.public-btn0:hover span img:nth-child(2){
    opacity: 0;
}



.index-item2 .content{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: .4rem;
    margin-top: .8rem;
}
.index-item2 .content .list .pic{
    /*border-radius: 100%;*/
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
    width: 3rem;
    height: 3rem;
}
.index-item2 .content .list .pic img{
    border-radius: 100%;
    transition: all 0.3s;
}
.index-item2 .content .list .pic img:nth-child(1){
    border: 6px solid transparent;
}
.index-item2 .content .list .pic .icon{
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 100%;
    width: .76rem;
    border-radius: 100%;
    height: .76rem;
}
.index-item2 .content .list .text{
    border-top: 1px solid #c9c9c9;
    padding-top: .13rem;
    margin-top: .4rem;
    transition: all 0.3s;
}
.index-item2 .content .list .text h4{
    display: flex;
    align-items: center;
    color: #6246ac;
    font-size: .2rem;
    margin-bottom: .08rem;
}
.index-item2 .content .list .text h4 img{
    margin-right: .09rem;
}
.index-item2 .content .list .text h5{
    color: #505050;
    font-size: .17rem;
    font-family: 'Lato-Italic';
    margin-bottom: .08rem;
}
.index-item2 .content .list .text p{
    color: #505050;
    font-size: .18rem;
    font-family: 'Lato-LightItalic';
    margin-bottom: .06rem;
}
.index-item2 .content .list:hover .text{
    border-top: 1px solid #4334a2;
}
.index-item2 .content .list:hover .pic img:nth-child(1){
    border: 6px solid #4334a2;
}





.index-item3{
    display: flex;
    justify-content: space-between;
    margin-top: .7rem;
    background: #f1f3fb;
}
.index-item3 .left{
    padding: .8rem 1rem .7rem 5%;
    width: 38%;
    z-index: 9;
    box-shadow: 75px -32px 55px rgba(255, 255, 255, 1)
}
.index-item3 .left .box{

}
.index-item3 .left ul{
    margin-top: .4rem;
    overflow: hidden;
}
.index-item3 .left li{
    position: relative;
    margin-bottom: .2rem;
}
.index-item3 .left li .bg{
    height: .86rem;
    background: linear-gradient(45deg, #aa67c0, #4334a2);
}
.index-item3 .left h4{
    position: absolute;
    top: 50%;
    left: .17rem;
    transform: translateY(-50%);
    padding: 0 .1rem;
    color: #fff;
    font-size: .3rem;
    line-height: .6rem;
    width: max-content;
    font-family: "Helvetica";
    background: #011226;
    letter-spacing: 1px;
}
.index-item3 .left li:nth-child(1) .bg{
    width: 2.6rem;
}
.index-item3 .left li:nth-child(2) .bg{
    width: 3rem;
}
.index-item3 .left li:nth-child(3) .bg{
    width: 3.7rem;
}
.index-item3 .left li:nth-child(4) .bg{
    width: 2.3rem;
}
.index-item3 .left li:nth-child(5) .bg{
    width: 1.8rem;
}
.index-item3 .left li:nth-child(6) .bg{
    width: 2.9rem;
}

.index-item3 .left .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aa67c0;
    color: #aa67c0;
    width: 2.2rem;
    margin-top: .1rem;
}
.index-item3 .left .public-btn0 img{
    transform: translateY(1px);
}

.index-item3 .right{
    width: 62%;
    background: #fff;
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
}

.index-item3 .right:before{
    content: '';
    position: absolute;
    right: 0;
    width: 1.3rem;
    height: 100%;
    z-index: 99;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.wrap{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wrap ul{
    overflow: hidden;
    position:absolute;
    width: 1600px;
    left: 0;
    top: 0;
    height: 100%;
}

.wrap ul li{
    position: relative;
    float: left;
    width: auto;
    height: 100%;
    padding: 0 .8rem;
    display: flex;
    align-items: center;
    border-right: 2px solid #ebebeb;
}
.wrap ul li .pic{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.4rem;
}
.wrap ul li .pic img{
    max-height: 100%;
}
.wrap ul li h4{
    position: absolute;
    top: 0;
    left: .38rem;
    color: #adadad;
    font-size: .24rem;
    font-family: "Helvetica";
}





.index-item4{
    padding: 1.1rem 0 1.8rem;
    background: url("../img/bg-1.jpg") no-repeat;
    background-size: cover;
}

.index-item4 #main {
    width: 100%;
    height: 390px;
}


.chart-container {
    width: 800px;
    height: 500px;
    margin: 20px auto;
}


#legendContainer {
    width: 75%;
    height: 70px;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    margin-top: .3rem;
    overflow-x: auto;
    gap: 20px;
    box-sizing: border-box;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    color: #fff;
    font-size: 12px;
    font-family: "Lato-LightItalic";
}
.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}
.legend-item.disabled {
    opacity: 0.4;
}


.index-item4 .content{
    display: flex;
    justify-content: space-between;
}
.index-item4 .content .left{
    width: 49%;
}
.index-item4 .content .right{
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 48%;
    padding: .89rem .65rem;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
    border-radius: 6px;
}
.index-item4 .content .right .title h3{
    color: #fff;
    margin-bottom: .2rem;
}
.index-item4 .content .right h4{
    color: #fff;
    line-height: .36rem;
    font-size: .24rem;
    margin-bottom: .1rem;
}
.index-item4 .content .right .text p{
    color: #fff;
    font-size: .18rem;
    font-family: "Lato-Light";
    line-height: .36rem;
    margin-bottom: .15rem;
}
.index-item4 .content .right .public-btn2{
    margin-top: .35rem;
}
.index-item4 .content .right a{
    display: flex;
    justify-content: center;
    width: 2rem;
}


.index-item5 .content{
    background: #fff;
    transform: translateY(-.95rem);
    padding: .7rem .2rem;
    border-radius: 6px;
    box-shadow: 0 0 8px #f2f2f2;
}
.index-item5 ul{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}
.index-item5 ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    padding: 0 .2rem;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    position: relative;
}

.index-item5 ul li:before{
    content: '';
    position: absolute;
    right: -.25rem;
    bottom: -.25rem;
    z-index: 8;
    width: .49rem;
    height: .49rem;
    background: #fff;
}
.index-item5 ul li:after{
    content: '';
    position: absolute;
    right: -2.5px;
    bottom: -2.5px;
    z-index: 8;
    width: 5px;
    height: 5px;
    background: #ececec;
}

.index-item5 .swiper-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    margin-top: .5rem;
}
.index-item5 .swiper-pagination span{
    margin: 0 .15rem!important;
    background: #dfdfdf;
    width: .16rem;
    height: .16rem;
    opacity: 1;
}
.index-item5 .swiper-pagination span.swiper-pagination-bullet-active{
    background: #4334a2;
    width: .2rem;
    height: .2rem;
}


.index-item6 .title h3{
    text-align: center;
}
.advantages-list ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
    margin-top: .4rem;
}
.advantages-list ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #353535;
    font-size: .2rem;
    font-family: "Helvetica";
    border-bottom: 2px solid #0c1d32;
    padding: .2rem 0;
}
.advantages-list ul li span{
    font-size: .3rem;
    color: #4f4f4f;
    font-family: "Arial";
    font-weight: normal;
}
.advantages-list ul li a:hover{
    color: #4334a2;
    border-bottom: 2px solid #4334a2;
}


.index-item6 .content{
    position: relative;
    background: #4334a2;
    border-radius: 6px;
    margin-top: 1rem;
    padding: .8rem .7rem;
}
.index-item6 .content .title{
    margin-bottom: .7rem;
}
.index-item6 .content .title h3{
    color: #fff;
}

.index-item6 .content .swiper-slide{
    display: flex;
    justify-content: space-between;
}
.index-item6 .content .swiper-slide .item{
    width: 46%;
}
.index-item6 .content .swiper-slide .item .text{
    margin-bottom: .5rem;
    position: relative;
    padding: 0 .4rem;
}
.index-item6 .content .swiper-slide .item .text p{
    color: #fff;
    font-size: .2rem;
    line-height: .3rem;
    margin-bottom: .1rem;
}
.index-item6 .content .swiper-slide .item .text:before{
    content: '“';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-size: .6rem;
    line-height: .4rem;
    font-family: "Helvetica";
    display: flex;
    align-items: flex-start;
}
.index-item6 .content .swiper-slide .item .text:after{
    content: '“';
    position: absolute;
    right: 0;
    bottom: -.3rem;
    color: #fff;
    font-size: .6rem;
    line-height: .4rem;
    font-family: "Helvetica";
    display: flex;
    align-items: flex-start;
}
.index-item6 .content .swiper-slide .item .kehu{
    display: flex;
    align-items: center;
    padding: 0 .4rem;
}
.index-item6 .content .swiper-slide .item .kehu .name{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    min-width: 1.9rem;
    max-width: 1.9rem;
    border-right: 1px solid #a19ad1;
}
.index-item6 .content .swiper-slide .item .kehu h4{
    color: #fff;
    font-size: .18rem;
    margin-bottom: .1rem;
}
.index-item6 .content .swiper-slide .item .kehu span{
    color: #fff;
    font-size: .2rem;
    font-family: "Lato-LightItalic";
}
.index-item6 .content .swiper-slide .item .kehu-logo{
    display: flex;
    align-items: center;
    margin-left: .3rem;
}
.index-item6 .content .swiper-slide .item .kehu-logo .icon{
    display: flex;
    align-items: center;
    margin-right: .2rem;
}
.index-item6 .content .swiper-slide .item .kehu-logo .icon a{
    display: flex;
}
.index-item6 .content .swiper-slide .item .kehu-logo p{
    color: #fff;
    font-size: .18rem;
    line-height: .3rem;
    max-width: 3.2rem;
    font-family: "Lato-LightItalic";
}
.index-item6 .content .swiper-container{
    margin-bottom: 1.3rem;
}
.index-item6 .content .switch{
    display: flex;
    position: absolute;
    right: .7rem;
    bottom: .7rem;
}
.index-item6 .content .switch .swiper-button-white{
    border: 1px solid #fff;
    width: .7rem;
    height: .7rem;
}
.index-item6 .content .switch .swiper-button-white i{
    color: #fff;
}
.index-item6 .content .switch .swiper-button-white:hover{
    border: 1px solid #684eaf;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}

.index-item6 .content .swiper-pagination{
    display: flex;
    align-items: center;
    position: absolute;
    left: .7rem;
    bottom: .7rem;
    border: 1px solid #f9f9fc;
    border-radius: 26px;
    width: max-content;
    padding: .2rem .56rem;
}
.index-item6 .content .swiper-pagination span{
    background: #a7a7a7;
    width: .15rem;
    height: .15rem;
    margin: 0 .07rem!important;
    opacity: 1;
}
.index-item6 .content .swiper-pagination span.swiper-pagination-bullet-active{
    background: #ffffff;
}

.index-item7 .swiper-container-horizontal > .swiper-scrollbar {
    opacity: 1 !important;
}

.index-item7 .swiper-container {
    padding-bottom: 10px;
    padding-top: .4rem;
}

.index-item7 .swiper-container-horizontal > .swiper-scrollbar {
    left: 0;
    width: 100%;
}

.index-item7 .swiper-scrollbar {
    background: #dfdfdf;
    height: 8px;
    position: relative;
    margin-top: .2rem;
}

.index-item7 .swiper-scrollbar-drag {
    height: 8px;
    border-radius: 3px;
    background: #aa67c0;
    max-width: 3.35rem;
    top: 0;
    position: absolute;
}

.index-item7{
    margin-top: 1rem;
}
.index-item7 .title{
    text-align: center;
}
.index-item7 .title .public-btn2{
    display: flex;
    justify-content: center;
    margin-top: .24rem;
}
.index-item7 .title .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
    padding: 0 .5rem;
}
.index-item7 .title .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}
.index-item7 .title h4{
    color: #000000;
    font-size: .24rem;
    margin-top: .1rem;
}


.index-item7 .swiper-slide .num{
    display: flex;
    justify-content: center;
    font-size: 2.6rem;
    line-height: 2rem;
    color: #e6e6e6;
    transition: all 0.3s;
    font-family: "Helvetica";
}
.index-item7 .swiper-slide .text{
    position: relative;
    box-shadow: 0 0 10px #eeeeee;
    padding: .6rem .5rem;
    transform: translateY(-30px);
    background: #fff;
    transition: all 0.3s;
    border-radius: 6px;
}
.index-item7 .swiper-slide p{
    color: #000000;
    font-size: .22rem;
    line-height: .28rem;
    position: relative;
}
.index-item7 .swiper-slide .text:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg-2.jpg") no-repeat;
    background-size: cover;
    opacity: 0;
    transition: all 0.3s;
}
.index-item7 .swiper-slide:hover .text:before{
    opacity: 1;
}
.index-item7 .swiper-slide:hover .num{
    color: #7f75c0;
}

.index-item8{
    background: url("../img/bg-3.jpg") no-repeat;
    background-size: cover;
    padding: 1.6rem 0;
    margin-top: .7rem;
}
.index-item8 .title h3{
    color: #fff;
    margin-bottom: .2rem;
}
.index-item8 .content{
    display: flex;
    justify-content: flex-end;
}
.index-item8 .content .text{
    max-width: 6rem;
}
.index-item8 ul{
    margin-bottom: .5rem;
}
.index-item8 ul li{
    display: flex;
    align-items: center;
    padding: .2rem 0;
    border-bottom: 1px solid #858587;
}
.index-item8 ul li .icon{
    display: flex;
    align-items: center;
    width: .55rem;
    margin-right: .25rem;
}
.index-item8 ul li h4{
    color: #ffffff;
    font-size: .18rem;
    font-weight: bold;
    margin-bottom: .08rem;
}
.index-item8 ul li p{
    color: #ffffff;
    font-size: .18rem;
    font-family: "Lato-Light";
}
.index-item8 .public-btn2 .public-btn0{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .25rem;
    width: 3rem;
}
.index-item8 .public-btn2 .public-btn0 span img{
    transform: translateY(1px);
}


#imgModule {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

#imgDefault {
    cursor: pointer;
}

.imgItem {
    width: 100%;
}

.mask {
    background: #000;
    opacity: .8;
    filter: alpha(opacity=80);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.lightBoxContent {
    width: 800px;
    height: 530px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9991;
    background: #fff;
    margin: -265px 0 0 -400px;
}

#imgLoader {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -16px;
    display: none;
}

#imgLight {
    width: 800px;
    height: 540px;
    -webkit-animation: change 1s;
    animation: change 1s;
}

#imgModule .btn {
    width: 40px;
    height: 50px;
    position: fixed;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
}

.lightBoxSprite {
    background-image: url(../img/imgIcons.png);
    background-repeat: no-repeat;
}

#lightBoxPrev {
    left: 10px;
    background-position: 2px center;
}

#lightBoxNext {
    right: 10px;
    background-position: -42px center;
}

.closeBtn {
    width: 35px;
    height: 35px;
    background-position: -100px center;
    position: fixed;
    top: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 9999;
}

.lightBoxPagination {
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 100%;
    text-align: center;
    z-index: 9999;
}

.lightBoxPagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 8px;
}

.lightBoxPagination span.current {
    background: #fff;
}

@keyframes change {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.index-item9{
    padding-top: .8rem;
}
.index-item9 .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}
.index-item9 .title .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4334a2;
    color: #4334a2;
    min-width: 2.2rem;
}
.index-item9 .title .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}
.index-item9 ul{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .32rem;
}
.index-item9 ul li{
    padding-bottom: .3rem;
    border-bottom: 1px solid #0c1d32;
}
.index-item9 ul li img{
    border-radius: 4px;
    transition: all 0.3s;
}
.index-item9 ul li:hover{
    border-bottom: 1px solid #4334a2;
}
.index-item9 ul li:hover img{
    transform: scale(1.03,1.03);
}

.index-item10{
    background: url("../img/bg-5.jpg") no-repeat;
    background-size: cover;
    padding: .9rem 0;
    margin-top: .8rem;
}
.index-item10 .title{
    text-align: center;
}
.index-item10 .title h3{
    color: #fff;
    margin-bottom: .3rem;
}
.index-item10 .title h4{
    color: #ffffff;
    font-size: .3rem;
    margin-bottom: .4rem;
}
.index-item10 .public-btn2{
    display: flex;
    justify-content: center;
}
.index-item10 .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.9rem;
}
.index-item10 .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}

.news{
    padding-bottom: 1rem;
}
.news-top{
    display: flex;
    align-items: center;
    padding: .8rem 0 .6rem;
}
.news-top .title h3{
    font-size: .45rem;
    line-height: .6rem;
    margin-bottom: .24rem;
}
.news-top .text{
    width: 45%;
}
.news-top .pic{
    width: 51%;
}
.news-top p{
    color: #2d2d2d;
    line-height: .3rem;
    font-size: .18rem;
    margin-bottom: .18rem;
}
.news-top .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6f4aaf;
    color: #6d49ae;
    font-size: .18rem;
    min-width: 2.2rem;
    margin-top: .25rem;
}
.news-top .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}
.news-top .time{
    color: #464646;
    font-size: .18rem;
}
.news-bot{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
}
.news-bot .list .pic{
    margin-bottom: .25rem;
    overflow: hidden;
}
.news-bot .list .pic img{
    transition: all 0.3s;
}
.news-bot .list h4{
    color: #000000;
    font-size: .22rem;
    line-height: .3rem;
    min-height: .6rem;
    margin-bottom: .15rem;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-bot .list .time{
    color: #464646;
    font-size: .18rem;
}
.news-bot .list:hover .pic img{
    transform: scale(1.05,1.05);
}
.news-bot .list:hover h4{
    color: #aa67c0;
}

.Loading{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #323f47;
    font-size: .28rem;
    margin-top: .6rem;
}
.Loading img{
    margin-right: .3rem;
}







.bannerTwo{
    height: 7.3rem;
}

.download-brochure{
    width: 3rem;
    display: block;
    text-align: center;
    padding: .12rem .25rem .08rem;
    background: #0156d9;
    color: #ffffff;
    font-size: .24rem;
    font-family: "Teko-Regular";
    text-transform: uppercase;
    margin-top: .5rem;
}
.download-brochure:hover{
    color: #fff;
}




.about-item1{
    padding: 1.1rem 0 .5rem;
    background: url("../img/about-bg.jpg") no-repeat;
    background-size: cover;
}
.about-item1 .title h3{
    color: #000000;
    font-size: .5rem;
    margin-bottom: .2rem;
}

.about-item1 .content{
    display: flex;
    justify-content: space-between;
}
.about-item1 .content .item{
    width: 46%;
}
.about-item1 .content .item p{
    color: #000000;
    font-size: .18rem;
    line-height: .36rem;
    font-family: "Lato-Light";
}

:root {
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-text: papayawhip;
        --color-bg: navy;
        --color-bg-accent: #2626a0;
    }
}

.marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: .42rem;
    /*-webkit-mask-image: linear-gradient(*/
    /*        var(--mask-direction, to right),*/
    /*        hsl(0 0% 0% / 0),*/
    /*        hsl(0 0% 0% / 1) 20%,*/
    /*        hsl(0 0% 0% / 1) 80%,*/
    /*        hsl(0 0% 0% / 0)*/
    /*);*/
    /*mask-image: linear-gradient(*/
    /*        var(--mask-direction, to right),*/
    /*        hsl(0 0% 0% / 0),*/
    /*        hsl(0 0% 0% / 1) 20%,*/
    /*        hsl(0 0% 0% / 1) 80%,*/
    /*        hsl(0 0% 0% / 0)*/
    /*);*/
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: .42rem;
    min-width: 100%;
    -webkit-animation: scroll-x var(--duration) linear infinite;
    animation: scroll-x var(--duration) linear infinite;
}
.marquee__group img{
    width: 7rem;
    height: 5.1rem;
    border-radius: 5px;
}
@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    -webkit-animation-name: scroll-y;
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

@-webkit-keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }
    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }
    to {
        transform: translateX(var(--scroll-end));
    }
}

@-webkit-keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }
    to {
        transform: translateY(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }
    to {
        transform: translateY(var(--scroll-end));
    }
}

/* Element styles */
.marquee svg {
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
}

.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: .42rem;
    margin: auto;
    max-width: 100vw;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

/* Toggle direction button */
.toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--color-bg-accent);
    z-index: 1;
}

.toggle:focus-visible {
    box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-50%);
    -webkit-animation: fade 400ms 4s ease-out forwards;
    animation: fade 400ms 4s ease-out forwards;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

@-webkit-keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


.about-item3{
    padding: .8rem 0 1rem;
    background: url("../img/about-bg2.jpg") no-repeat;
    background-size: cover;
    margin-top: .8rem;
    margin-bottom: .9rem;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.about-item3 .title h3{
    text-align: center;
    color: #fff;
    font-size: .5rem;
}
.about-item3 .content{
    display: flex;
    justify-content: space-between;
    margin-top: .8rem;
}

.about-item3 .content .list{
    width: 31%;
    border: 2px solid #ada6d7;
    padding: .65rem .3rem;
    min-height: 4.9rem;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}
.about-item3 .content .list:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.about-item3 .content .list:nth-child(1):before{
    background: url("../img/about-item3.jpg") no-repeat;
    background-size: cover;
    opacity: 0;
}
.about-item3 .content .list:nth-child(2):before{
    background: url("../img/about-item3.jpg") no-repeat;
    background-size: cover;
    opacity: 0;
}
.about-item3 .content .list:nth-child(3):before{
    background: url("../img/about-item3.jpg") no-repeat;
    background-size: cover;
    opacity: 0;
}
.about-item3 .content .list:hover:before{
    opacity: 1;
}
.about-item3 .content .list h4{
    color: #ffffff;
    font-size: .3rem;
    font-family: "Helvetica";
    font-style: italic;
    margin-bottom: .25rem;
    position: relative;
}
.about-item3 .content .list p{
    color: #ffffff;
    font-size: .2rem;
    line-height: .38rem;
    position: relative;
}

.agenda-nav{
    background: #f7f7f7;
}
.agenda-nav ul{
    display: flex;
    align-items: center;
    /*overflow-x: auto;*/
    white-space: nowrap;
    overflow-scrolling: touch;
}
.agenda-nav ul li{
    display: inline-flex;
    /*display: flex;*/
    align-items: center;
    margin-right: 1.4rem;
}
.agenda-nav ul li a{
    color: #000000;
    line-height: .8rem;
    font-size: .2rem;
    position: relative;
    padding-left: .2rem;
}
.agenda-nav ul li a.active:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .06rem;
    height: .19rem;
    border-radius: 3px;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}
.agenda-nav ul li a.active:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #4434a3;
}
.agenda-nav ul li a.active{
    color: #4434a3;
}
.agenda{
    padding-bottom: 2rem;
}

.agenda-main{
    padding-top: .7rem;
}
.agenda-main .item{
    display: flex;
    align-items: flex-start;
    padding: 0 0 .25rem;
}
.agenda-main .item .time{
    display: flex;
    color: #474747;
    font-size: .3rem;
    min-width: 1.05rem;
    transform: translateY(-.1rem);
    font-family: "Helvetica";
}
.agenda-main .item .session{
    background: #4334a3;
    padding: .2rem;
    border-radius: 5px;
    width: fit-content;
}
.agenda-main .item .session p{
    color: #ffffff;
    font-size: .18rem;
}
.agenda-main .item .text{
    position: relative;
    padding-left: .6rem;
    margin-left: .28rem;
    border-left: 2px solid #c6c6c6;
    width: 100%;
}
.agenda-main .item .text:before{
    content: '';
    position: absolute;
    top: 0;
    left: -.135rem;
    width: .27rem;
    height: .27rem;
    background: url("../img/yuan.png") no-repeat;
    background-size: cover;
}
.sponsorlogo{
    display: flex;
    flex-flow: wrap;
}
.sponsorlogo .pic{
    margin-right: .3rem;
}
.agenda-main .item h4{
    color: #474747;
    font-size: .18rem;
    margin-bottom: .25rem;
    font-weight: bold;
}
.agenda-main .item li{
    position: relative;
    color: #7d7d7d;
    font-size: .18rem;
    margin-bottom: .1rem;
    padding-left: .17rem;
}
.agenda-main .item li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .06rem;
    height: .06rem;
    background: #7d7d7d;
    border-radius: 100%;
}
.agenda-main .item .list{
    display: flex;
    align-items: flex-start;
    margin-bottom: .2rem;
}
.agenda-main .item .list .pic{
    display: flex;
    position: relative;
    width: 1.3rem;
    min-width: 1.3rem;
    margin-right: .44rem;
}
.agenda-main .item .list .pic img{
    border-radius: 100%;
}
.agenda-main .item .introduction{
    display: flex;
    flex-flow: wrap;
    /*display: grid;*/
    /*grid-template-columns: repeat(1,1fr);*/
    /*gap: .2rem;*/
    margin-top: .3rem;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: .3rem;
    /*width: 100%;*/
}
.agenda-main .item .list .txt{
    display: flex;
    align-items: flex-start;
}
.agenda-main .item .list .txt .position{
    position: relative;
    margin-right: .45rem;
}
.agenda-main .item .list .txt .position:before{
    content: '';
    position: absolute;
    background: #c6c6c6;
    top: 50%;
    transform: translateY(-50%);
    right: -.21rem;
    width: 2px;
    height: .45rem;
}
.agenda-main .item .list .txt .position:last-child:before{
    display: none;
}
.agenda-main .item .list .pic .icon{
    position: absolute;
    right: -.22rem;
    bottom: 0;
    width: .44rem;
    height: .44rem;
    border-radius: 100%;
}
.agenda-main .item .list .txt h4{
    color: #6246ac;
    font-size: .2rem;
    margin-bottom: .1rem;
    margin-top: .2rem;
}
.agenda-main .item .list .txt h5{
    color: #505050;
    font-size: .17rem;
    font-family: "Lato-Italic";
    font-weight: bold;
    margin-bottom: .05rem;
}
.agenda-main .item .list .txt p{
    color: #505050;
    font-size: .18rem;
    margin-bottom: .05rem;
    font-family: "Lato-LightItalic";
}

.attendee .index-item4{
    background: #4434a3;
    padding: .9rem 0;
}
.attendee .index-item4 .content .right{
    background: none;
    padding: 0;
    justify-content: flex-start;
    padding-top: .6rem;
}
.index-item4 .content .right .title h3{
    margin-bottom: .3rem;
}
.attendee .index-item4 .content .right h4{
    margin-bottom: .2rem;
}
.attendee .index-item4 .content .right h4 span{
    font-size: .2rem;
}
.attendee .index-item5{
    padding-top: .8rem;
}
.attendee .index-item5 .item{
    margin-bottom: .7rem;
}
.attendee .index-item5 .title h3{
    text-align: center;
}
.attendee .index-item5 ul{
    margin-top: .65rem;
}
.attendee .index-item5 ul li{
    height: 2rem;
}
.attendee .index-item6{
    margin-bottom: .7rem;
}
.attendee-item .title h3{
    text-align: center;
}
.attendee-item ul{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    width: 86%;
    margin: 0 auto;
    margin-top: .65rem;
}
.attendee-item ul li{
    padding: 0 .24rem;
    line-height: .6rem;
    border-radius: 30px;
    border: 1px solid #313131;
    margin: 0 .2rem;
    color: #000000;
    font-size: .2rem;
    margin-bottom: .3rem;
    transition: all 0.3s;
    cursor: pointer;
}
.attendee-item ul li:hover{
    background: #4334a2;
    color: #fff;
}
.attendee .index-item6 .content{
    margin-top: .5rem;
}

.speakers .index-item2 .content{
    margin-top: 0;
}

.sponsors-main{
    padding-top: .7rem;
    padding-bottom: .8rem;
}
.sponsors-main .content{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
.sponsors-main .content .left{
    width: 25%;
    min-width: 3.3rem;
    max-width: 3.3rem;
}
.sponsors-main .content .left h3{
    color: #000000;
    font-size: .3rem;
    font-family: "Helvetica";
    margin-bottom: .3rem;
}
.sponsors-main .content .left li{
    border-bottom: 2px solid #0c1d32;
    margin-bottom: .1rem;
}
.sponsors-main .content .left li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #262626;
    font-size: .2rem;
    line-height: .74rem;
}
.sponsors-main .content .left li.active{
    border-bottom: 2px solid #4434a3;
}
.sponsors-main .content .left li.active a{
    color: #4434a3;
    font-weight: bold;
}
.sponsors-main .content .left li.active span{
    opacity: 1;
}
.sponsors-main .content .left li span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: .3rem;
    height: .3rem;
    color: #fff;
    background: #4434a3;
    border-radius: 100%;
    font-family: SimSun-ExtB;
    opacity: 0;
    transition: all 0.3s;
}
.sponsors-main .content .left li:hover{
    border-bottom: 2px solid #4434a3;
}
.sponsors-main .content .left li:hover span{
    opacity: 1;
}
.sponsors-main .content .left li:hover a{
    color: #4434a3;
    font-weight: bold;
}



.sponsors-main .content .right{
    width: 72%;
}
.sponsors-main .content .right h3{
    color: #4434a3;
    font-size: .3rem;
    font-family: "Helvetica";
}

.sponsors-main .content .right ul{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .28rem;
    margin-top: .4rem;
}
.sponsors-main .content .right ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e2e2;
    border-radius: 4px;
    padding: .2rem;
    height: 1.2rem;
    transition: all 0.3s;
}
.sponsors-main .content .right ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sponsors-main .content .right ul li:hover{
    border: 2px solid #4434a3;
}
.sponsors-main .content .right .information{
    margin-top: .5rem;
}
.sponsors-main .content .right .information .pic{
    margin-bottom: .35rem;
    border-radius: 6px;
}
.sponsors-main .content .right .information .pic img{
    width: 100%;
}
.sponsors-main .content .right .information h4{
    color: #000000;
    font-size: .24rem;
    font-family: "Helvetica";
    margin-bottom: .22rem;
}
.sponsors-main .content .right .information p{
    color: #000000;
    font-size: .18rem;
    line-height: .34rem;
    margin-bottom: .3rem;
}

.sponsors-main .content .right .information .link{
    display: flex;
    flex-flow: wrap;
    margin-top: .5rem;
}
.sponsors-main .content .right .information .link a{
    display: flex;
    align-items: center;
    margin-right: .6rem;
}
.sponsors-main .content .right .information .link span{
    color: #000000;
    font-weight: bold;
}
.sponsors-main .content .right .information .link .icon{
    display: flex;
    align-items: center;
    border-right: 3px solid #4434a3;
    padding-right: .15rem;
    margin-right: .18rem;
}

.sponsors-main .content .right .information .link p{
    margin-bottom: 0;
    color: #4434a3;
    font-size: .18rem;
}

.opportunities{
    padding-top: .7rem;
    padding-bottom: .7rem;
}
.opportunities .title h3{
    text-align: center;
    font-size: .3rem;
}
.opportunities .lst{
    margin-bottom: .5rem;
}
.opportunities .item{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .35rem;
    margin-top: .4rem;
}
.opportunities .item .list{
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px #e6e3e3;
}
.opportunities .item .list h4{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: .24rem;
    height: .7rem;
    font-family: "Helvetica";
    text-align: center;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}
.opportunities .item .list ul{
    padding: .5rem .28rem .35rem;
}
.opportunities .item .list ul li{
    color: #000000;
    font-size: .18rem;
    line-height: .24rem;
    position: relative;
    margin-bottom: .1rem;
    padding-left: .13rem;
}
.opportunities .item .list ul li.on{
    padding-left: 0;
}
.opportunities .item .list ul li.on:before{
    display: none;
}
.opportunities .item .list ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: .09rem;
    width: .07rem;
    height: .07rem;
    background: #000000;
    border-radius: 100%;
}
.opportunities .item .list ul li.active{
    color: #4435a2;
}
.opportunities .item .list ul li.active:before{
    background: #4435a2;
}
.register{
    background: url("../img/register-bg.jpg") top center no-repeat;
    background-size: cover;
    padding-top: 2.4rem;
    padding-bottom: 1.5rem;
}
.register .content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1.6rem;
}
.register .title h3{
    color: #fff;
    font-size: .5rem;
    font-family: "Helvetica";
}
.register .left{
    background: url("../img/bg-6.jpg") no-repeat center center;
    background-size: cover;
    width: 41%;
    padding: .35rem .75rem .5rem;
    border-radius: 25px;
}
.register .left h3{
    color: #fff;
    font-size: .3rem;
    font-family: "Helvetica";
}
.register .menuone{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff;
    margin-bottom: .5rem;
    margin-top: .4rem;
}
.register .left .menuone li{
    position: relative;
    font-size: .3rem;
    color: #ffffff;
    font-family: "Helvetica";
    padding-bottom: .15rem;
    cursor: pointer;
}
.register .left .menuone li img{
    position: absolute;
    left: 0;
    bottom: -.16rem;
}
.register .left .menuone li img:nth-child(1){
    opacity: 0;
}
.register .left .menuone li.active{
    color: #aa67c0;
}
.register .left .menuone li.active img:nth-child(1){
    opacity: 1;
}
.register .left .menuone li.active img:nth-child(2){
    opacity: 0;
}
.register .menutwo{
    display: none;
}
.register .left .text li{
    margin-bottom: .18rem;
}
.register .left h4{
    color: #000000;
    font-size: .18rem;
    margin-bottom: .2rem;
    font-weight: bold;
}
.register .left h5{
    color: #2a2a2a;
    font-size: .18rem;
    margin-bottom: .06rem;
    font-weight: bold;
}
.register .left p{
    color: #2a2a2a;
    line-height: .3rem;
    font-size: .18rem;
}
.register .left button{
    border: 1px solid #6357b3;
    border-radius: 20px;
    height: .4rem;
    padding: 0 .22rem;
    color: #4334a2;
    font-size: .16rem;
    font-family: "Lato-Light";
    transition: all 0.3s;
}
.register .left button:hover{
    background: #4334a2;
    color: #fff;
}
.register .left .image{
    display: flex;
    justify-content: center;
    margin-top: .16rem;
}
.register .right{
    width: 55%;
    box-shadow: 0 0 10px #e5e5e5;
    border-radius: 24px;
    overflow: hidden;
}
.register .right .menutwo{
    display: none;
}
.register .right .biaodan{
    padding: .35rem 1rem;
    background: #fff;
}
.register .right .menuone{
    background: #4334a2;
    margin-top: 0;
    padding: 0 1rem;
    border-bottom: none;
    margin-bottom: 0;
}
.register .right .menuone li{
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: .2rem;
    font-weight: bold;
    padding: .27rem 0;
}
.register .right .menuone li.active:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: .18rem;
    width: 100%;
    height: 3px;
    background: #d189e8;
}


.biaodan{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}
.biaodan .list{
    display: flex;
    flex-flow: column;
    width: 48%;
    margin-bottom: .2rem;
}
.w100{
    width: 100%!important;
}
.biaodan .list span{
    display: block;
    color: #000000;
    font-size: .2rem;
    font-weight: bold;
    margin-bottom: .15rem;
}
.biaodan .list span i{
    font-style: normal;
    margin-right: .08rem;
    transform: translateY(2px);
}
.biaodan .list input{
    width: 100%;
    border: 1px solid #d7d7d7;
    height: .6rem;
    border-radius: 3px;
    padding: 0 .18rem;
    font-size: .18rem;
    color: #666;
}
.biaodan .list select{
    width: 100%;
    border: 1px solid #d7d7d7;
    height: .6rem;
    padding: 0 .18rem;
    font-size: .18rem;
    color: #9c9c9c;
    appearance: auto;
}
.biaodan .list textarea{
    width: 100%;
    border: 1px solid #d7d7d7;
    height: 1.4rem;
    border-radius: 3px;
    padding-top: .18rem;
    padding-left: .18rem;
    font-size: .18rem;
    color: #9c9c9c;
}
.biaodan .list textarea::placeholder{
    color: #9c9c9c;
    font-size: .18rem;
    font-family: "Lato-Light";
}


.biaodan .list input::placeholder{
    color: #9c9c9c;
    font-size: .18rem;
    font-family: "Lato-Light";
}
.biaodan .list p{
    color: #818181;
    font-size: .18rem;
    line-height: .32rem;
    font-family: "Lato-Light";
}
.biaodan .list button{
    width: 2rem;
    height: .6rem;
    border-radius: 30px;
    color: #fff;
    font-size: .18rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
}

.biaodan .list h4{
    color: #000000;
    font-size: .2rem;
    font-weight: bold;
    margin-bottom: .15rem;
}
.biaodan .list .link{
    color: #3d3d3d;
    font-size: .18rem;
    font-family: "Lato-Light";
    margin-bottom: .25rem;
}
.biaodan .list .choice{
    margin-bottom: .15rem;
}
.biaodan .list label{
    display: flex;
    align-items: center;
    color: #818181;
    font-size: .18rem;
    line-height: .32rem;
    font-family: "Lato-Light";
    margin-bottom: .1rem;
}
.biaodan .list label input{
    width: .2rem;
    height: .2rem;
    border: 1px solid #cbcbcb;
    margin-right: .14rem;
}









.news-banner{
    position: relative;
    height: 6.4rem;
}
.news-banner .text{
    position: absolute;
    bottom: 1rem;
}
.news-banner .share{
    display: flex;
    align-items: center;
}
.news-banner .share ul{
    display: flex;
    align-items: center;
}
.news-banner .share ul li{
    display: flex;
    align-items: center;
    margin-right: .2rem;
    max-width: 32px;
}
.news-banner .share ul li a{
    display: flex;
    align-items: center;
}
.news-banner .share span{
    color: #fff;
    font-size: .18rem;
    margin-right: .2rem;
}
.news-banner .breadcrumb-nav{
    position: relative;
    bottom: 0;
    margin-bottom: .5rem;
}
.news-banner p{
    color: #fff;
    font-size: .2rem;
    margin-bottom: .1rem;
}
.news-banner h3{
    color: #fff;
    font-size: .48rem;
    font-family: Helvetica;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: .5rem;
    width: 80%;
}


.news-detail .container{
    max-width: 13rem;
}
.news-detail h4{
    color: #2d2d2d;
    font-size: .3rem;
    font-family: "Helvetica";
    margin-bottom: .2rem;
    margin-top: .4rem;
}
.news-detail p{
    font-size: .18rem;
    line-height: .3rem;
    font-family: "Lato-Light";
    margin-bottom: .14rem;
}
.news-detail {
    padding-top: .8rem;
    padding-bottom: 1.3rem;
}

.news-detail .pic{
    margin-bottom: .3rem;
}
.news-detail .pic img{
    width: 100%;
}





.prev-next{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ededed;
    padding-top: .3rem;
    margin-top: 1rem;
}

.prev-next a{
    color: #cdcdcd;
    font-size: .24rem;
    text-transform: uppercase;
    font-family: "Teko-Regular";
}
.prev-next a:hover{
    color: #0156d7;
}




.news-detail .right{
    width: 27%;
}
.news-detail .right h3{
    color: #1c2231;
    font-size: .3rem;
    font-family: "Teko-Regular";
    text-transform: uppercase;
}
.news-detail .right .list{
    border-bottom: 1px solid #ededed;
    padding: .4rem 0;
    transition: all 0.3s;
}
.news-detail .right .list h4{
    color: #404040;
    font-size: .21rem;
    line-height: .32rem;
    font-weight: 400;
    margin-bottom: .2rem;
    transition: all 0.3s;
}
.news-detail .right .list .time{
    display: flex;
    align-items: center;
    color: #bdbdbd;
    font-size: .16rem;
}
.news-detail .right .list .time img{
    margin-right: .12rem;
    transform: translateY(-1px);
}
.news-detail .right .list:hover{
    border-bottom: 1px solid #0156d7;
}
.news-detail .right .list:hover h4{
    color: #0156d7;
}

.venue{
    padding-top: .8rem;
    padding-bottom: 1.1rem;
}
.venue-top{
    background: #f8f8f8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}
.venue-top .left{
    width: 65%;
    padding-right: .7rem;
}
.venue-top .title{
    background: #4334a2;
    padding: .26rem .65rem;
}
.venue-top .title h3{
    color: #fff;
}
.venue-top .content{
    display: flex;
    justify-content: space-between;
    padding: .5rem .9rem .7rem;
}
.venue-top .list{
    display: flex;
    align-items: flex-start;
    margin-bottom: .4rem;
}
.venue-top .list .num{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica";
    width: .26rem;
    height: .26rem;
    min-width: .26rem;
    min-height: .26rem;
    background: #535353;
    border-radius: 100%;
    color: #fff;
    font-size: .2rem;
    margin-right: .2rem;
}
.venue-top .list h4{
    color: #4334a2;
    font-size: .2rem;
    margin-bottom: .2rem;
    font-weight: bold;
}
.venue-top .list p{
    color: #313133;
    font-size: .18rem;
    margin-bottom: .1rem;
    font-family: "Lato-Italic";
}
.venue-top .list ul{
    padding-left: .26rem;
}
.venue-top .list ul li{
    margin-bottom: .1rem;
    color: #313133;
    font-size: .18rem;
    font-family: "Lato-LightItalic";
}
.venue-top .list .public-btn2 .public-btn0{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    font-size: .18rem;
    border-radius: 36px;
    line-height: .7rem;
    border: none;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
    padding: 0 .7rem;
    margin-top: .2rem;
    font-style: normal;
    font-family: "Lato-Regular";
    margin-left: .26rem;
}
.venue-top .list .public-btn2 .public-btn0 img{
    transform: translateY(1px);
}
.venue-top .list .public-btn2 .public-btn0:before {
    background: linear-gradient(45deg, #4334a2, #4334a2);
}
.venue-top .right{
    width: 35%;
    border-left: 1px solid #c8c8c8;
    padding-left: .58rem;
    overflow: hidden;
}
.venue-top .right h4{
    color: #4334a2;
    font-size: .2rem;
    font-weight: bold;
    margin-bottom: .3rem;
}


/* 跑马灯容器样式 */
.marquee-container {
    width: 100%;       /* 跑马灯宽度 */
    height: 100%;      /* 跑马灯高度 */
    overflow: hidden;   /* 隐藏超出容器的内容 */
    position: relative;
}

/* 跑马灯内容容器 */
.marquee-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* 跑马灯项样式（可自定义） */
.marquee-item {
    width: 100%;
    display: flex;
    margin-bottom: .3rem;
    align-items: center;
    justify-content: center;
}
.venue-mid{
    margin-top: .8rem;
}
.venue-mid .title{
    margin-bottom: .4rem;
}
.venue .title h3{
    font-size: .4rem;
}
.venue-mid .list{
    display: flex;
    justify-content: space-between;
    margin-bottom: .8rem;
}
.venue-mid .list .pic{
    width: 45%;
    border-radius: 6px;
}
.venue-mid .list .pic img{
    width: 100%;
}
.venue-mid .list .text{
    width: 55%;
    padding-left: .6rem;
}
.venue-mid .list .text h4{
    color: #4334a2;
    font-weight: bold;
    font-family: "Helvetica";
    font-size: .2rem;
    margin-bottom: .1rem;
}
.venue-mid .list .text p{
    color: #0c0c0c;
    font-size: .2rem;
    margin-bottom: .1rem;
    font-family: "Lato-LightItalic";
}
.venue-mid .list .text p:nth-child(2){
    font-family: "Lato-Light";
    font-weight: bold;
    margin-bottom: .2rem;
}
.venue-mid .list .text .public-btn2{
    display: flex;
    justify-content: flex-end;
    margin-top: .4rem;
}
.venue-mid .list .text .public-btn2 .public-btn0{
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    font-size: .18rem;
    text-transform: uppercase;
    border-radius: 36px;
    line-height: .7rem;
    border: none;
    background: linear-gradient(45deg, #4334a2, #aa67c0);
    padding: 0 .7rem;
    font-family: "Lato-Regular";
}
.venue-mid .list .text .public-btn2 .public-btn0:before{
    background: linear-gradient(45deg, #4334a2, #4334a2);
}

.venue-bot{
    margin-top: .8rem;
}
.venue-bot table{
    width: 100%;
    margin-top: .45rem;
}
.venue-bot th{
    background: #4334a2;
    color: #fff;
    font-size: .2rem;
    padding: .13rem .2rem;
    border: none;
}
.venue-bot th:nth-child(1){
    padding-left: .5rem;
}
.venue-bot tr{
    border-bottom: 10px solid #fff;
}
.venue-bot td{
    color: #252525;
    font-size: .18rem;
    font-family: "Lato-Light";
    padding: .13rem .2rem;
    background: #f3f3f3;
}

.venue-bot td:nth-child(1){
    padding-left: .5rem;
}




















.policy .container{
    max-width: 13rem;
}
.policy-top{
    padding-top: 1.9rem;
    background: #f3f3f3;
    padding-bottom: .65rem;
}
.policy-top h3{
    color: #1c2231;
    font-size: .55rem;
    font-family: "Teko-Medium";
    margin-bottom: .1rem;
    text-transform: uppercase;
}
.policy-top p{
    color: #404040;
    font-size: .18rem;
}
.policy-bot{
    padding-top: .9rem;
    padding-bottom: 1.2rem;
}
.policy-bot h4{
    color: #1c2231;
    font-size: .21rem;
    font-weight: 500;
    margin-bottom: .1rem;
}
.policy-bot h5{
    color: #404040;
    font-size: .18rem;
    font-weight: 400;
}
.policy-bot table{
    width: 100%;
    margin-bottom: .35rem;
}
.policy-bot p{
    color: #404040;
    font-size: .18rem;
    line-height: .28rem;
    margin-bottom: .22rem;
}
.policy-bot td{
    border: 1px solid #e8e8e8;
    color: #404040;
    font-size: .18rem;
    line-height: .28rem;
    padding: .14rem .16rem;
    min-width: 2.5rem;
    vertical-align: top;
    font-weight: 100;
}
.policy-bot th{
    padding: .14rem .16rem;
    border: 1px solid #e8e8e8;
    color: #404040;
    font-size: .18rem;
    line-height: .28rem;
    font-weight: 400;
}
.policy-bot ul{
    padding-left: .1rem;
    margin-bottom: .3rem;
    margin-top: .1rem;
}
.policy-bot ul li{
    display: flex;
    align-items: center;
    color: #0156d7;
    font-size: .18rem;
    margin-bottom: .05rem;
}
.policy-bot ul li img{
    margin-right: .1rem;
}

.contact-box{
    background: #f3f3f3;
    padding: .35rem .6rem;
    margin-top: .5rem;
}
.contact-box h4{
    color: #0156d7;
    font-size: .24rem;
    font-weight: 500;
}
.contact-box p{
    display: flex;
    align-items: center;
    color: #1c2231;
    font-size: .18rem;
    font-weight: 400;
    margin-bottom: .1rem;
}
.contact-box p img{
    margin-right: .12rem;
}














@media (max-width: 1480px) {
    #c-header .c-nav > li {
        padding: 0 0.2rem;
    }
}

@media (max-width: 1366px) {

    #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;
    }

    #c-header i {
        font-size: .18rem;
    }
    #c-header .c-gn .ztop-search i{
        font-size: .16rem;
    }
    #c-header .c-gn > div:last-child i {
        font-size: 20px;
        margin-left: 10px;
    }

    #c-header .c-switch {
        width: 25px;
        height: 20px;
    }

    #c-header .c-switch i {
        background: #fff;
    }

    #c-header .c-nav2 li {
        padding: 0 25px;
    }

    .public-topsearch .box1 .container .box2 input {
        line-height: 40px;
        font-size: 16px;
    }

    .public-topsearch .box1 .container .box2 input::placeholder {
        font-size: 16px;
    }

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

    .public-topsearch .box1 .container .box3 {
        padding: 15px 0;
    }

    .left_menu ul li {
        width: 100px;
    }

    .bannerTwo {
        height: 320px;
        /*margin-top: 65px;*/
    }
}

@media (max-width: 768px) {
    .bannerTwo .text h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .bannerTwo .text p {
        font-size: 16px;
    }

    .left_menu ul li {
        line-height: 65px;
        margin: 0 15px;
    }


    html, body {
        font-size: calc(100vw / 5);
    }
    .public-banner2 .textcontainer .cn1{
        font-size: 24px;
        line-height: 32px;
    }
    .public-banner2 .textcontainer .cn2{
        font-size: 16px;
    }
    .public-banner2{
        height: 600px;
    }
    .index-item1{
        padding: 60px 0 60px;
    }
    .index-item1 .content .text{
        width: 100%;
        margin-bottom: 30px;
    }
    .index-item1 .about-num{
        width: 100%;
    }
    .index-item1 .content .text h3{
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .index-item1 .content .text p{
        font-size: 16px;
        line-height: 26px;
    }
    .index-item1 .content .text h4{
        margin-bottom: 20px;
    }
    .index-item1 .about-num .data .list{
        padding: .35rem .1rem;
    }
    .index-item1 .about-num .data .list .count-title{
        font-size: 30px;
    }
    .index-item1 .about-num .data .list span:nth-child(2){
        font-size: 20px;
    }
    .index-item1 .about-num .data .list .icon{
        margin-right: 10px;
    }
    .index-item1 .about-num .data .list span:nth-child(3){
        word-break: break-word;
    }
    .title h3{
        font-size: 28px;
    }
    .index-item2 .title{
        flex-flow: wrap;
    }
    .index-item2 .public-btn2{
        flex-flow: column;
    }
    .index-item2 .public-btn2 a{
        margin-bottom: 15px;
    }
    .index-item2 .title h3{
        margin-bottom: 30px;
    }
    .index-item2 .content{
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .index-item3{
        flex-flow: wrap;
    }
    .index-item3 .left{
        width: 100%;
    }
    .index-item3 .right{
        width: 100%;
        padding: 40px 0 0 0;
        height: 300px;
    }

    .index-item3 .left h4{
        font-size: 20px;
    }
    .wrap ul li h4{
        font-size: 20px;
    }
    .index-item4{
        padding: 60px 0 120px;
    }
    .index-item4 .content{
        flex-flow: wrap;
    }
    .index-item4 .content .left{
        width: 100%;
        margin-bottom: 30px;
    }
    .index-item4 .content .right{
        width: 100%;
        padding: 35px 25px;
    }

    #legendContainer{
        width: 100%;
        height: auto;
    }
    .index-item4 .content .right h4{
        line-height: 28px;
        font-size: 18px;
    }
    .index-item4 .content .right .text p{
        line-height: 26px;
        font-size: 16px;
    }
    .index-item5 .content{
        padding: .4rem .2rem;
    }
    .index-item5 ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .index-item5 ul li{
        padding: 0 20px;
    }
    .advantages-list ul{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .index-item6 .content .title{
        margin-bottom: 40px;
    }
    .index-item6 .content{
        margin-top: 60px;
        padding: 40px 20px;
    }

    .index-item6 .content .swiper-slide{
        flex-flow: wrap;
    }
    .index-item6 .content .swiper-slide .item{
        width: 100%;
        margin-bottom: 20px;
    }

    .index-item9 ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .index-item9 ul li{
        padding-bottom: 10px;
    }
    .index-item10 .public-btn2{
        flex-flow: wrap;
    }
    .index-item6 .content .swiper-slide .item .text p{
        font-size: 18px;
        line-height: 28px;
    }
    .index-item6 .content .swiper-slide .item .kehu{
        flex-flow: wrap;
    }
    .index-item6 .content .swiper-slide .item .kehu .name{
        width: 100%;
        border: none;
    }
    .index-item6 .content .swiper-slide .item .text{
        margin-bottom: 20px;
    }
    .index-item6 .content .swiper-slide .item .kehu-logo{
        align-items: flex-start;
        margin-left: 0;
        flex-flow: column;
    }
    .index-item6 .content .swiper-slide .item .kehu-logo .icon{
        margin: 10px 0;
    }
    .index-item6 .content .swiper-pagination{
        left: 0;
        bottom: 0;
        position: relative;
    }
    .index-item6 .content .switch{
        display: none;
    }

    .index-item6 .content .swiper-container{
        margin-bottom: 40px;
    }
    .index-item7 .title h4{
        font-size: 18px;
        line-height: 28px;
        margin-top: 10px;
    }

    .index-item8{
        padding: 80px 0;
    }

    .index-item9 .title{
        flex-flow: column;
    }
    .index-item9 .title h3{
        margin-bottom: 20px;
    }
    .index-item10{
        padding: 60px 0;
    }
    .index-item10 .public-btn2 .public-btn0{
        margin-bottom: 10px;
    }
    .index-item10 .title h4{
        font-size: 18px;
    }
    .public-banner2 .public-btn2 .public-btn0:nth-child(1){
        line-height: .6rem;
    }


    .footer-top .title h3{
        font-size: 30px;
    }
    .footer-top{
        padding: 50px 0;
    }
    .footer{
        padding: 20px;
    }
    .footer .left{
        display: none;
    }
    .footer .right{
        width: 100%;
    }
    .footer .right .content{
        display: none;
    }
    .copyright{
        width: 100%;
        justify-content: center;
        margin-top: 0;
        border-top: none;
        padding: 0;
    }
    .copyright a{
        display: none;
    }
    .footer .top{
        display: none;
    }
    .footer .bot{
        border-top: none;
    }

    #c-header .c-nav2 li .c-title-box{
        width: 100%;
    }
    #c-header .c-nav2 li ul{
        width: 100%;
    }
    #c-header .c-nav2 li{
        display: flex;
        flex-flow: wrap;
    }
    #c-header .c-nav2 li ul a{
        line-height: 44px;
    }
    #c-header .c-logo{
        min-width: 80%;
        margin-right: 0;
    }
    #c-header .c-logo .c-img-box p{
        display: none;
    }
    #c-header{
        top: 0;
        border: none;
    }

    .bannerTwo h3{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .bannerTwo p{
        font-size: 20px;
    }
    .about-item1{
        padding: 60px 0;
    }
    .about-item1 .content{
        flex-flow: wrap;
    }
    .about-item1 .content .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .about-item1 .title h3{
        font-size: 26px;
    }
    p{
        font-size: 16px!important;
        line-height: 26px!important;
    }
    .marquee__group img{
        width: 300px;
        height: 219px;
    }
    .about-item3{
        padding: 60px 0;
    }
    .about-item3 .title h3{
        font-size: 28px;
    }
    .about-item3 .content{
        flex-flow: wrap;
    }
    .about-item3 .content .list{
        padding: 35px 20px;
        width: 100%;
        margin-bottom: 20px;
        min-height: auto;
    }

    .agenda-nav ul{
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        overflow-scrolling: touch;
    }
    .agenda-nav ul li{
        display: inline-flex;
        margin-right: .4rem;
    }
    .agenda-main .item .list{
        flex-flow: wrap;
    }
    .agenda-main .item .list .txt{
        flex-flow: wrap;
    }
    .agenda-main .item .list .txt .position:before{
        display: none;
    }
    .agenda-main .item .time{
        font-size: 20px;
        min-width: 58px;
    }
    .agenda-main .item .text{
        padding-left: 25px;
        margin-left: 15px;
    }
    .attendee .index-item4{
        padding: 60px 0;
    }
    .attendee .index-item5{
        padding-top: 60px;
    }
    .attendee .index-item4 .content .right{
        padding-top: 0;
    }
    .attendee-item ul{
        width: 100%;
    }
    .attendee-item ul li{
        margin: 0 10px;
        padding: 10px 15px;
        margin-bottom: 10px;
        line-height: .3rem;
        font-size: 16px;
        text-align: center;
    }
    .copyright p{
        text-align: center;
    }
    .opportunities .item{
        grid-template-columns: repeat(1, 1fr);
    }
    .news-top{
        flex-flow: wrap;
        padding: 60px 0 40px;
    }
    .news-top .text{
        width: 100%;
        margin-bottom: 20px;
    }
    .news-top .pic{
        width: 100%;
    }
    .news-top .title h3{
        font-size: 26px;
        line-height: 32px;
    }
    .news-bot {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .Loading{
        font-size: 20px;
    }
    .Loading img{
        width: 40px;
    }
    .news-detail{
        padding-top: 60px;
    }
    .news-banner{
        height: 430px;
    }
    .news-banner h3{
        font-size: 26px;
        width: 100%;
        margin-bottom: 30px;
    }
    .news-banner .breadcrumb-nav{
        margin-bottom: 30px;
    }
    .news-banner .share ul li{
        max-width: 25px;
        margin-right: 8px;
    }
    .news-detail h4{
        font-size: 22px;
    }
    .bannerTwo h4{
        font-size: 20px;
    }
    .bannerTwo .add img{
        width: 16px;
    }
    .venue-top .content{
        flex-flow: wrap;
        padding: 30px 20px 30px;
    }
    .venue-top .left{
        width: 100%;
        padding-right: 0;
    }
    .venue-top .list{
        margin-bottom: 20px;
    }
    .venue-top .right{
        width: 100%;
        height: 5rem;
        border: none;
        padding-left: 0;
    }
    .venue-top .title{
        padding: .24rem 20px;
    }
    .venue .title h3{
        font-size: 26px;
    }
    .venue-mid .list{
        flex-flow: wrap;
        margin-bottom: 40px;
    }
    .venue-mid .list .pic{
        height: 300px;
        width: 100%;
        margin-bottom: 30px;
    }
    .venue-mid .list .text{
        width: 100%;
        padding-left: 0;
    }
    .venue-bot .content{
        overflow-x: auto;
    }
    .venue-bot table{
        width: 1400px;
    }

    .register{
        padding-top: 110px;
    }
    .register .title h3{
        font-size: .3rem;
    }
    .register .content{
        flex-flow: wrap;
        margin-top: 40px;
    }
    .register .left{
        width: 100%;
        padding: .35rem 25px .5rem;
        margin-bottom: 30px;
    }
    .register .right{
        width: 100%;
    }
    .register .right .menuone{
        padding: 0 20px;
    }
    .register .right .biaodan{
        padding: 30px 20px;
    }
    .register .right .menuone li{
        font-size: 16px;
    }
    .big-pic{
        width: 95%;
    }
}