/* 内页样式表 */
* {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

html,
body {
    position: relative;
    color: #333333;
    font-family: "微软雅黑";
}

a {
    text-decoration: none;
    color: #333333;
    font-family: "微软雅黑";
    display: block;
}

ul,
ol,
li {
    list-style: none;
}

img {
    display: block;
}

.container {
    padding: 0 110px;
    box-sizing: border-box;
    margin: 0 auto;
}

.pageContainer {
    margin: 0 auto;
    box-sizing: border-box;
    width: 1440px;
    overflow: hidden;
}

input,
textarea {
    outline: none;
}

i,
em {
    font-style: normal;
}

body {
    background-color: #fff;
}

.indexHeader {
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: transparent;
    user-select: none;
    transition: background .4s ease;
    box-shadow: none;
    backdrop-filter: blur(0);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.indexHeader:hover,
.page_head {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(4px);
}

.indexHeader .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.indexHeader .active {
    display: none;
}

.indexHeader:hover .white,
.page_head .white {
    display: none;
}

.indexHeader:hover .active,
.page_head .active {
    display: flex;
}

.indexHeader .right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.indexHeader .right nav {
    height: 100%;
}

.indexHeader .right nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.indexHeader .right nav ul li {
    margin: 0 44px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.indexHeader .right nav ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgb(7, 28, 93);
    transition: all 0.3s;

}

.indexHeader .right nav ul li:hover::after,
.indexHeader .right nav ul li.active::after {
    width: 24px;
}

.indexHeader .right nav ul li a {
    font-size: 18px;
    color: #ffffff;
}

.indexHeader:hover .right nav ul li a,
.page_head .right nav ul li a {
    color: #333333;
}

.indexHeader:hover .right nav ul li:hover a,
.indexHeader:hover .right nav ul li.active a,
.page_head .right nav ul li:hover a,
.page_head .right nav ul li.active a {
    color: #071c5d;
}

.indexHeader .right .lang_box {
    position: relative;
    z-index: 999;
}

.indexHeader .right .lang_box .lang_menu {
    display: flex;
    align-items: center;
    height: 88px;
    color: #fff;
    transition: color .4s ease;
}

.indexHeader .right .lang_box .lang_menu span {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-family: Arial;
    margin: 0 10px;
}

.indexHeader:hover .right .lang_box .lang_menu,
.page_head .right .lang_box .lang_menu {
    color: #333333;
}

.indexHeader .right .lang_box:hover .lang_menu span::after {
    transform: scale(.8);
}

.indexHeader .right .lang_box .lang_more {
    display: none;
    z-index: 9;
    width: 140px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    margin-left: -70px;
    border-top: 4px solid #01afe7;
    border-radius: 5px 5px 0 0;
    transition: top .4s ease;
}

.indexHeader .right .lang_box .lang_more:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #01afe7 transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    margin: 0 0 0 -8px;
}

.indexHeader .right .lang_box .lang_more a {
    display: flex;
    font-size: 16px;
    color: #222;
    justify-content: center;
    padding: 10px 0;
    transition: all .4s ease;
}

.indexHeader .right .lang_box .lang_more a:hover,
.indexHeader .right .lang_box .lang_more a.active{
    background: #01afe7;
}

.indexHeader .right .lang_box:hover .lang_more {
    display: block;
    animation: langInUp .4s ease-out;
}

@keyframes langInUp {
    0% {
        transform: translateY(20px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.indexHeader .nav_icon{
    display: none;
}

/* 隐藏的导航 */
.yin_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    box-sizing: border-box;
    background-color: rgba(7,28,93, .5);
}

.yin_nav ul {
    width: 80%;
    height: 100%;
    box-sizing: border-box;
    padding: 100px 35px 0 35px;
    background-color: rgb(7,28,93);
    position: relative;
}

.yin_nav ul li {
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yin_nav ul li a {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 45px;
    width: 100%;
    color: #efefef;
    box-sizing: border-box;
    padding-left: 20px;
    font-size: 18px;
}
.yin_nav ul li.active>a {
    color: #01afe7;
}
.yin_nav .lang{
    display: none;
    position: absolute;
    bottom: 40px;
    justify-content: right;
    align-items: center;
}
.yin_nav .lang a{
    margin: 0 10px;
    color: #efefef;
    font-size: 16px;
}
.yin_nav .lang a.active{
    color: #01afe7;
}

.nav_bar2_a{
    font-size: 18px;
    color: #fff;
    padding: 20px 0 20px 40px;
    border-bottom: 1px solid rgba(7,28,93,.2);
}
svg{
    width: 25px;
    height: 25px;
}


.banner1 {
    width: 100%;
    position: relative;
}

.banner1 img {
    width: 100%;
    object-fit: contain;
}

.banner1 .location {
    position: absolute;
    bottom: 40px;
    left: 240px;
}

.banner1 .location p {
    font-size: 16px;
    color: #999999;
    display: flex;
    align-items: center;
}

.banner1 .location p a {
    font-size: 16px;
    color: #999999;
}
.banner1 .location p a:hover,
.banner1 .location p span{
    color: #cccccc;
}
.banner1 .location p a,
.banner1 .location p span{
    display: contents;
}

/* footer */
.footer {
    height: auto !important;
}

.footer .top {
    padding: 100px 0 80px 0;
    box-sizing: border-box;
    background-color: rgb(42, 42, 42);
}

.footer .top .footer_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.footer .top .footer_header .nav ul {
    display: flex;
    align-items: center;
}

.footer .top .footer_header .nav ul li {
    padding-left: 90px;
    box-sizing: border-box;
}

.footer .top .footer_header .nav ul li a {
    font-size: 20px;
    color: #ccc;
}

.footer .top .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.footer .top .content .left .code {
    width: 103px;
    height: 103px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .top .content .left .code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .top .content .left p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top: 15px;
    box-sizing: border-box;
}

.footer .top .content .center .textP,
.footer .top .content .center p,
.footer .top .content .center p a {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer .top .content .center .text {
    display: flex;
    margin-top: 20px;
}

.footer .top .content .center .text p {
    padding-bottom: 15px;
    box-sizing: border-box;
}

.footer .top .content .center .text .text_left {
    padding-right: 80px;
    box-sizing: border-box;
}

.footer .top .content .center h3,
.footer .top .content .center h3 a {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
    display: flex;
}

.footer .top .content .right {
    width: 46.17%;
}

.footer .top .content .right form .form_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 170px;
}

.footer .top .content .right form .form_top .left_input {
    width: 39.745%;
    height: 100%;
}

.footer .top .content .right form .form_top input {
    width: 100%;
    height: 50px;
    background-color: rgb(34, 33, 33);
    color: #cccccc;
    font-size: 18px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footer .top .content .right form .form_top input:last-child {
    margin-bottom: 0;
}

.footer .top .content .right form .form_top textarea {
    width: 58.6%;
    height: 100%;
    font-family: "微软雅黑";
    color: #cccccc;
    font-size: 18px;
    background-color: rgb(34, 33, 33);
    padding: 20px;
    box-sizing: border-box;
    display: block;
}

.footer .top .content .right form .form_bottom input[type="submit"] {
    width: 160px;
    height: 40px;
    background-color: rgb(7, 28, 93);
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

.footer .top .content .right form .form_bottom input[type="submit"]:hover{
    border: 2px solid rgb(7,28,93);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}


.footer .bottom {
    background-color: rgb(28, 28, 28);
}

.footer .bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.footer .bottom p,
.footer .bottom p a {
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
    display: flex;
    align-items: center;
}

.page1 {
    background-color: rgb(246, 246, 246);
    padding: 108px 0 120px 0;
    box-sizing: border-box;
}

.col ul {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(204, 204, 204);
}

.col ul li {
    margin: 0 60px;
}

.col ul li:first-child {
    margin-left: 0;
}

.col ul li:last-child {
    margin-right: 0;
}

.col ul li a {
    font-size: 20px;
    color: #666666;
}

.col ul li:hover a,
.col ul li.active a {
    font-size: 30px;
    color: #333333;
}

.page1 .content {
    padding-top: 80px;
    box-sizing: border-box;
}
.page1 .content .box1,
.page1 .content .box2,
.page1 .content .box3{
    overflow: hidden;
}
.page1 .content .box1 h1 {
    font-size: 48px;
    color: #333333;
    line-height: 1.1em;
    font-weight: normal;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.page1 .content .box1 .des{
    overflow: hidden;
}
.page1 .content .box1 .des p {
    font-size: 18px;
    color: #666666;
    line-height: 2.667em;
    text-align: justify;
    width: 1020px;
}

.page1 .content .box1 .imgBox {
    padding-top: 80px;
    box-sizing: border-box;
    overflow: hidden;
}

.page1 .content .box1 .imgBox img {
    width: 100%;
}

.page1 .content .box2 .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page1 .content .box2 .top ol{
    width: 30.55%;
}
.page1 .content .box2 .top ol li {
    padding: 25px 0;
    box-sizing: border-box;
}

.page1 .content .box2 .top ol li h4 {
    font-size: 30px;
    color: #333333;
    font-weight: normal;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page1 .content .box2 .top ol li p {
    font-size: 20px;
    color: #333333;
}

.page1 .content .box2 .top .pic {
    width: 59%;
    height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page1 .content .box2 .top .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page1 .content .box2 .bottom {
    padding-top: 195px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.page1 .content .box2 .bottom h1 {
    font-size: 48px;
    color: #333333;
    font-weight: normal;
}

.page1 .content .box2 .bottom ol {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 65%;
    margin-bottom: -70px;
}

.page1 .content .box2 .bottom ol li {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.page1 .content .box2 .bottom ol li h4 {
    font-size: 30px;
    color: #333333;
    font-weight: normal;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.page1 .content .box2 .bottom ol li p {
    font-size: 18px;
    color: #333333;
    line-height: 2em;
}

.page1 .content .box3 .swiper-container {
    padding-bottom: 120px;
    box-sizing: border-box;
    position: relative;
}

.page1 .content .box3 .swiper-container .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.87);
    background-color: rgb(255, 255, 255);
    padding: 27px 25px;
    box-sizing: border-box
}
.page1 .content .box3 .swiper-container .swiper-slide img{
    max-width: 100%;
    object-fit: contain;
}

.page1 .content .box3 .swiper-container .swiper-slide-active,
.page1 .content .box3 .swiper-container .swiper-slide-duplicate-active {
    transform: scale(1);
    box-shadow: 0px 6px 40px 0px rgba(51, 51, 51, 0.1);
}

.page1 .content .box3 .swiper-container .swiper-pagination-progressbar {
    bottom: 0;
    top: auto;
    height: 2px;
    background: rgb(255, 255, 255);
}

.page1 .content .box3 .swiper-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: rgb(7, 28, 93);
}

/* 产品 */
.page2,
.page4,
.page5,
.page6,
.page7 {
    background-color: rgb(246, 246, 246);
    padding: 100px 0;
    box-sizing: border-box;
}

.page2 .col {
    width: 100%;
    height: 70px;
    background-color: #fff;
    margin-bottom: 60px;
}

.page2 .col ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding-bottom: 0;
    border-bottom: none;
}
.page2 .col ul li{
    margin: 0;
}

.page2 .col ul li a {
    position: relative;
    font-size: 20px;
    color: #666666;
    white-space: nowrap;
}

.page2 .col ul li a span {
    font-size: 18px;
    color: #666666;
}

.page2 .col ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: rgb(7, 28, 93);
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    transition: all 0.3s;
}

.page2 .col ul li:hover a::after,
.page2 .col ul li.active a::after {
    width: 100%;
}

.page2 .col_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.page2 .col_text .pic {
    width: 42.36%;
    overflow: hidden;
}

.page2 .col_text .pic img {
    width: 100%;
    object-fit: contain;
}

.page2 .col_text .text_box {
    width: 54.81%;
}

.page2 .col_text .text_box .text {
    padding-bottom: 40px;
    box-sizing: border-box;
}
.page2 .col_text .text_box .text p {
    font-size: 16px;
    color: #333333;
    line-height: 3em;
}

.page2 .col_text .text_box a {
    width: 180px;
    height: 50px;
    background-color: rgb(7, 28, 93);
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
    padding: 0 20px;
    box-sizing: border-box;
}

.page2 .col_text .text_box a span {
    font-size: 16px;
    color: #fff;
}

.page2 .col_text .text_box a .arrow {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page2 .col_text .text_box a:hover {
    padding: 0 40px;
}

.page2 .content {
    padding-top: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.page2 .content h2 {
    font-size: 30px;
    font-weight: normal;
    color: #333333;
    text-align: center;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.page2 .content .list ol {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.page2 .content .list ol li {
    padding: 0 15px;
    box-sizing: border-box;
    width: 33.3333%;
    margin: 30px 0;
    transition: all 0.4s;
}

.page2 .content .list ol li .pic {
    background-color: #fff;
    width: 100%;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page2 .content .list ol li .pic img {
    max-width: 100%;
    max-height: 460px;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.page2 .content .list ol li:hover .pic img{
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page2 .content .list ol li .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page2 .content .list ol li .text h5 {
    font-size: 20px;
    color: #333333;
    font-weight: normal;
    padding: 30px 0 20px 0;
    box-sizing: border-box;
}

.page2 .content .list ol li .text .button {
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(7, 28, 93);
    visibility: hidden;
}

.page2 .content .list ol li:hover .text .button {
    animation: langInUp .4s ease-out;
    visibility: visible;
}

.flip_page ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip_page ul li {
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2.5px;
}

.flip_page ul li:first-child,
.flip_page ul li:last-child {
    margin: 0 7.5px;
}

.flip_page ul li a,
.flip_page ul li span {
    font-size: 14px;
    color: #8f8f8f;
}

.flip_page ul li:hover,
.flip_page ul li.active {
    background-color: rgb(7, 28, 93);
}

.flip_page ul li:first-child:hover,
.flip_page ul li:last-child:hover {
    background-color: transparent;
}

.flip_page ul li:first-child:hover a,
.flip_page ul li:last-child:hover a,
.flip_page ul li:first-child.active a,
.flip_page ul li:last-child.active a {
    color: #8f8f8f;
}

.flip_page ul li.active a,
.flip_page ul li.active span,
.flip_page ul li:hover a,
.flip_page ul li:hover span {
    color: #fff;
}
.flip_page ul li:first-child:hover a,
.flip_page ul li:first-child:hover span,
.flip_page ul li:last-child:hover a,
.flip_page ul li:last-child:hover span{
    color: #8f8f8f;
}

/* 产品详情 */
.page3 {
    background-color: rgb(246, 246, 246);
}

.page3 .page3_top {
    padding: 100px 0;
    box-sizing: border-box;
}

.page3 .page3_top .pageContainer {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.page3 .page3_top .left {
    width: 650px;
}

.page3 .page3_top .left .mySwiper_big {
    width: 100%;
    height: 650px;
}

.page3 .page3_top .left .mySwiper_big .swiper-wrapper .swiper-slide {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page3 .page3_top .left .mySwiper_big .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    max-height: 650px;
    object-fit: contain;
}

.page3 .page3_top .left .mySwiper_mini {
    width: 71.23%;
    display: flex;
    margin-left: 0;
    margin-right: 0;
}

.page3 .page3_top .left .mySwiper_mini .swiper-wrapper .swiper-slide {
    height: 100px;
    width: 100px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
}

.page3 .page3_top .left .mySwiper_mini .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
}

.page3 .page3_top .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.page3 .page3_top .left .swiper-button-prev {
    margin: 0 40px;
}

.page3 .page3_top .left .swiper-button-next {
    margin: 0 40px;
}

.page3 .page3_top .left .swiper-button-next,
.page3 .page3_top .left .swiper-button-prev {
    position: static;
    color: rgb(170, 170, 170);
    margin-top: 0px;
}

/* 当前选中状态样式 */
.page3 .page3_top .left .mySwiper_mini .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid rgb(7, 28, 93);
    box-sizing: border-box;
}

.page3 .page3_top .left .swiper-button-next.swiper-button-disabled,
.page3 .page3_top .left .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.page3 .page3_top .left .swiper-button-next:after,
.page3 .page3_top .left .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.page3 .page3_top .right {
    width: 52.08%;
    padding-top: 60px;
    box-sizing: border-box;
}

.page3 .page3_top .right>h2 {
    font-size: 40px;
    color: #333333;
    font-weight: normal;
    padding-bottom: 20px;
}

.page3 .page3_top .right>p {
    font-size: 18px;
    color: #333333;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.page3 .page3_top .right a {
    font-size: 16px;
    color: #fff;
    background-color: rgb(7, 28, 93);
    width: 140px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    border:2px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}
.page3 .page3_top .right a:hover{
    background-color: transparent;
    border:2px solid rgb(7, 28, 93);
    transition: all 0.3s ease-in-out;
    color: rgb(7, 28, 93);
}
.page3 .page3_top .right .content table p{
    line-height: 3em;
    font-size: 16px;
    color: #333;
}

.page3 .page3_center {
    background-color: rgba(255, 255, 255, .8);
    height: 329px;
    width: 100%;
    display: flex;
    align-items: center;
}

.page3 .page3_center ul {
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page3 .page3_center ul li {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid rgb(238, 238, 238);
    box-sizing: border-box;
    transition: all 0.4s;
}

.page3 .page3_center ul li:last-child {
    border-right: none;
}

.page3 .page3_center ul li .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(7, 28, 93);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page3 .page3_center ul li .circle h2 {
    font-size: 26px;
    color: #fff;
}

.page3 .page3_center ul li .content_txt p {
    font-size: 18px;
    color: #333333;
    line-height: 1.667em;
    text-align: center;
}

.page3 .page3_center ul li:hover {
    background-color: rgb(7, 28, 93);
}

.page3 .page3_center ul li:hover .circle {
    background-color: #fff;
}

.page3 .page3_center ul li:hover .circle h2 {
    color: #071c5d;
}

.page3 .page3_center ul li:hover .content_txt p {
    color: #fff;
}

.page3 .page3_bottom {
    padding: 100px 0;
    box-sizing: border-box;
}

.page3 .page3_bottom .page3_bottom_header h2 {
    font-size: 30px;
    color: #333333;
    font-weight: normal;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(221, 221, 221);
}

.page3 .page3_bottom .page3_bottom_header {
    margin-bottom: 40px;
}

.page3 .page3_bottom .pro_com {
    position: relative;
}

.page3 .page3_bottom .pro_com .next,
.page3 .page3_bottom .pro_com .prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: 44px;
    height: 44px;
    margin-top: -32.5px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    overflow: hidden;
}

.page3 .page3_bottom .pro_com .next {
    right: 156px;
    left: auto;
}

.page3 .page3_bottom .pro_com .prev {
    left: 156px;
    right: auto;
}

.page3 .page3_bottom .pro_com .next.swiper-button-disabled img,
.page3 .page3_bottom .pro_com .prev.swiper-button-disabled img {
    position: relative;
    left: -100px;
    filter: drop-shadow(100px 0 0 #ccc);
    cursor: auto;
    pointer-events: none;
}

.page3 .page3_bottom .pro_com .mySwiper_proCom .pic {
    background-color: #fff;
    height: 343.15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page3 .page3_bottom .pro_com .mySwiper_proCom .pic img {
    max-width: 100%;
    max-height: 343.15px;
    padding: 40px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.page3 .page3_bottom .pro_com .mySwiper_proCom .pic:hover img{
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page3 .page3_bottom .pro_com .mySwiper_proCom p {
    font-size: 16px;
    color: #333333;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}

/* 案例 */
.page4 .pageContainer {
    width: 1560px;
}

.page4 .list ol {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.page4 .list ol li {
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 80px;
}

.page4 .list ol li .pic {
    width: 100%;
    height: 300px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page4 .list ol li .pic img {
    max-width: 100%;
    max-height: 300px;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page4 .list ol li:hover .pic img {
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page4 .list ol li .text {
    padding: 40px 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page4 .list ol li .text p {
    font-size: 24px;
    color: #333333;
}

.page4 .list ol li .text .arrow {
    overflow: hidden;
}

.page4 .list ol li .text .arrow img {
    position: relative;
    left: -100px;
    filter: drop-shadow(100px 0 0 #ccc);
}

.page4 .list ol li:hover .text .arrow img {
    filter: drop-shadow(100px 0 0 #071c5d);
}

/* 案例详情 */
.page5 .title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(204, 204, 204);
    margin-bottom: 40px;
    position: relative;
}
.page5 .title .return{
    position: absolute;
    left: 0;
}
.page5 .title .return a,
.page5 .title .last_next p,
.page5 .title .last_next p a {
    font-size: 20px;
    color: #333333;
}

.page5 .title h2 {
    font-weight: normal;
    font-size: 30px;
    color: #333333;
}

.page5 .title .last_next {
    display: flex;
    position: absolute;
    right: 0;
}

.page5 .title .last_next p {
    margin-left: 30px;
}

.page5 .content {
    background-color: #fff;
    padding: 88px 0 70px 0;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}

.page5 .content .main {
    width: 800px;
    margin: 0 auto;
}

.page5 .content .main img {
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* 新闻 */
.page6 .top {
    padding: 60px 0;
    box-sizing: border-box;
}

.page6 .top a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page6 .top .pic {
    width: 50.69%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page6 .top .pic img {
    width: 100%;
    object-fit: contain;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page6 .top a:hover .pic img {
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page6 .top .right_text {
    width: 45.14%;
}

.page6 .top .right_text h3 {
    font-size: 30px;
    color: #333333;
    font-weight: normal;
    line-height: 1.6em;
    margin-bottom: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page6 .top .right_text .txt p {
    font-size: 16px;
    color: #333333;
    line-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page6 .top .right_text .time p {
    font-size: 16px;
    color: #999999;
    padding-top: 40px;
}

.page6 .list ol {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.page6 .list ol li {
    padding: 0 15px;
    box-sizing: border-box;
    width: 33.33%;
    margin-bottom: 50px;
}

.page6 .list ol li .pic {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page6 .list ol li .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page6 .list ol li:hover .pic img {
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page6 .list ol li .text p {
    font-size: 20px;
    color: #333333;
    line-height: 1.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-top: 20px;
    box-sizing: border-box;
}

/* 新闻详情页 */
.page7 .pageContainer {
    display: flex;
    justify-content: space-between;
}

.page7 .title {
    padding-bottom: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(204, 204, 204);
    margin-bottom: 40px;
}

.page7 .left {
    width: 65.14%;
}

.page7 .left .title a {
    font-size: 20px;
    color: #333333;
    height: 33px;
    display: flex;
    align-items: flex-end;
}

.page7 .left .content {
    background-color: #fff;
    padding: 60px 40px;
    box-sizing: border-box;
}

.page7 .left .content .news_title {
    border-bottom: 1px solid rgb(240, 240, 240);
}

.page7 .left .content .news_title h1 {
    font-size: 40px;
    font-weight: normal;
    color: #333333;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page7 .left .content .news_title p {
    font-size: 16px;
    color: #999999;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.page7 .left .content .box {
    padding-top: 40px;
    box-sizing: border-box;
}

.page7 .left .content .box p {
    font-size: 16px;
    color: #333333;
    line-height: 3em;
}

.page7 .left .content .box img {
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.page7 .right {
    width: 31.94%;
}

.page7 .right .title h2 {
    font-size: 30px;
    font-weight: normal;
    color: #333333;
    line-height: 1.1em;
    text-align: right;
}

.page7 .right .list ol li {
    margin-bottom: 50px;
}

.page7 .right .list ol li .pic {
    width: 100%;
    overflow: hidden;
}

.page7 .right .list ol li .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page7 .right .list ol li:hover .pic img {
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

.page7 .right .list ol li .text p {
    font-size: 20px;
    color: #333333;
    line-height: 1.8em;
    padding-top: 20px;
    box-sizing: border-box;
}

.page7 .right .last_next {
    margin-top: 120px;
}

.page7 .right .last_next p {
    font-size: 16px;
    color: #333333;
    line-height: 2.8em;
    display: flex;
    align-items: center;
}
.page7 .right .last_next p span,
.page7 .right .last_next p a{
    display: contents;
}
.page7 .right .last_next p a:hover{
    color: #071c5d;
}
/* 联系DB电竞 */
.page8 .top {
    background-color: rgb(246, 246, 246);
    height: 410px;
    width: 100%;
    padding: 100px 0;
    box-sizing: border-box;
}

.page8 .top .pageContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.page8 .top .left{
    width: 28.13%;
}
.page8 .top .left p {
    font-size: 16px;
    color: #333333;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.page8 .top .left span {
    font-size: 30px;
    color: #333333;
    display: block;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.page8 .top .left h3 a {
    font-size: 40px;
    color: #071c5d;
}

.page8 .top .right {
    width: 38.19%;
}

.page8 .top .right ol {
    display: flex;
    flex-wrap: wrap;
}

.page8 .top .right ol li {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 50%;
    margin-bottom: 45px;
}
.page8 .top .right ol li:last-child{
    margin-bottom: 0;
}
.page8 .top .right ol li .icon {
    margin-right: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page8 .top .right ol li .icon img{
    object-fit: contain;
    width: 100%;
}

.page8 .top .right ol li .text span {
    font-size: 16px;
    color: #333333;
}

.page8 .top .right ol li .text p,
.page8 .top .right ol li .text p a {
    font-size: 16px;
    color: #666666;
}

.page8 .bottom {
    padding: 100px 0;
    box-sizing: border-box;
}

.page8 .bottom .title h2 {
    font-size: 46px;
    color: #333333;
    text-align: center;
    font-weight: normal;
    padding-bottom: 10px;
}

.page8 .bottom .title p {
    font-size: 16px;
    color: #666666;
    text-align: center;
}

.page8 .bottom .box {
    margin-top: 60px;
}

.page8 .bottom form .inputGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page8 .bottom form .inputGroup input {
    width: 400px;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #666666;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.page8 .bottom form .inputGroup input:focus,
.page8 .bottom form textarea:focus {
    border-bottom: 1px solid #333;
}

.page8 .bottom form textarea {
    font-family: "微软雅黑";
    font-size: 16px;
    color: #666666;
    border-bottom: 1px solid rgb(238, 238, 238);
    padding: 20px 0;
    box-sizing: border-box;
    width: 100%;
    display: block;
}

.page8 .bottom form>input[type="submit"] {
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin: 80px auto 0;
    background-color: rgb(7, 28, 93);
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.page8 .bottom form>input[type="submit"]:hover{
    border: 2px solid rgb(7,28,93);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    color: rgb(7,28,93);
}