html {
    --color: #01309A;
    --font-family: 'Arial';
}

a:hover {
    color: #fff;
}

.bowen {
    position: relative;
}

.bowen::after,
.bowen::before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   

}

.bowen::after{
  animation-delay: 0.7s;
}
@keyframes eff68{
  0%{
    box-shadow: 0 0 0 0px #0093E9;
    opacity: 0.3;
  }
  100%{
    box-shadow: 0 0 0 30px #0093E9;
    opacity: 0;
  }

}
.bowen:hover{
    transform: scale(0.96);
}
.bowen:hover::after,
.bowen:hover::before {
    /* animation-play-state: paused; */
    animation: eff68 0.8s linear infinite;
}


.w1600 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.w1520 {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.w1500 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.w1250 {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.w1000 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.flex-x {
    display: flex;
    flex-direction: row;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.flex-align {
    justify-content: space-between;
    align-items: center;
}

button {
    cursor: pointer;
}

p,
a {
    font-size: inherit;
    color: inherit;
}

.menu {
    display: none;
}

.menu_down {
    display: none;
}


body {
    background: #fff;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

header {
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

header.open {
    position: fixed;
    top: 0;
}

header .logo {
    width: 25%;
    max-width: 400px;
    height: 100%;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);

}

header .logo a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    width: 80%;
    height: 60%;
    object-fit: contain;
}

header .nav {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
    /* padding: 0 50px; */
}

header .nav li {
    font-size: 16px;
    height: 90px;
    line-height: 90px;
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 3%;
}

header .nav li::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    right: -2px;

}

header .nav li:last-child::after {
    display: none;
}

header .nav li a {
    display: inline-block;
    height: 100%;
    white-space: nowrap;
}

header .right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;

}

header .right li {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    align-items: center;
}

header .right li a {
    display: inline-block;
    height: 25px;
    padding: 0 40px;
    font-size: 20px;
    border-left: 3px solid #fff;
    margin-left: -2px;
}

header .right li a i {
    font-size: 26px;
}

header .right li:nth-child(2) i {
    font-size: 20px;
}

header .right li:nth-child(3) i {
    font-size: 22px;
}

header .right .language {

    position: relative;

}
header .right .language-bg{
	 background:var(--color); 
}
header .right .language-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0px 0 0;
}

header .right .language-list li {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header .right .language-list li:last-child {
    border-bottom: 0;
}

header .right .language-list li a {
    padding: 10px 10px;
    display: inline-block;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 16px;
    border-left: 0;
    margin-left: 0;
}



.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    background: rgba(1, 48, 154, .9);
    width: 100%;
    height: 100%;
    padding: 90px 0 0;
    transition: all .5s;
}

.sidebar.active {
    left: 0;
}

.sidebar .w1600 {
    /* width: 100%; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #fff;
}

.sidebar .w1600 .top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar .w1600 .top .nav {
    justify-content: space-around;
}

.sidebar .w1600 .top .nav2 li {
    font-size: 18px;
    line-height: 2.6;
    color: #ccc;
}

.sidebar .w1600 .top .nav2 li:first-child {
    font-size: 24px;
    color: #fff;
}

.sidebar .w1600 .bottom {
    padding: 40px 0;

}

.sidebar .w1600 .bottom .title {
    font-size: 30px;
    margin-bottom: 20px;
}

.sidebar .w1600 .bottom ul {
    width: 100%;
    gap: 2%;
}

.sidebar .w1600 .bottom ul li {
    font-size: 16px;
    color: #eee;
    line-height: 3;
    /* white-space: nowrap; */
}

.sidebar .w1600 .bottom ul li:nth-child(1) {
    width: 23%;
}

.sidebar .w1600 .bottom ul li:nth-child(2) {
    width: 23%;
}

.sidebar .w1600 .bottom ul li:nth-child(3) {
    flex: 1;
}

.sidebar .close-btn {
    position: absolute;
    top: 5%;
    right: 0;
    cursor: pointer;
    right: 0;
    z-index: 8;
    font-size: 30px;
}

.open-btn {
    width: 60px;
    cursor: pointer;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -60px;
    z-index: 8;
    /* display: none; */
}

.right-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9;
    padding: 5px;
    background: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.right-sidebar li {
    cursor: pointer;
}

.right-sidebar li a {
    display: inline-block;
    padding: 15px 5px 15px 8px;

}

.right-sidebar li a i {
    font-size: 28px;
    color: #999;
}

.right-sidebar li:hover a i {
    color: var(--color);
}


.banner {
    width: 100%;
    min-height: 400px;
    height: 100vh;
    overflow: hidden;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .swiper .swiper-slide .info {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.banner .swiper .swiper-slide .info h2 {
    text-align: left;
    font-size: 72px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 40px;
}

.banner .swiper .swiper-slide .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 45px;
    line-height: 45px;
    padding: 1px 0 0;
    background: #fff;
    color: var(--color);
    font-size: 14px;
    border-radius: 23px;
    /* transition: all .3s; */
}

.banner .swiper .swiper-slide .info a::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color);
    margin-left: 5px;
}

.banner .swiper .swiper-pagination {
    bottom: 8%;
    position: absolute;
    left: 10%;
    z-index: 2;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: flex-end;

}

.banner .swiper .swiper-pagination1 {
    margin-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.banner .swiper .swiper-pagination1 span {
    font-size: 20px;
    color: #fff;
    padding: 0 8px;

}

.banner .swiper .swiper-pagination1 .sp1 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: -8px;
}

.banner .swiper .swiper-pagination1 .sp2 {
    line-height: 1;
    margin-bottom: -4px;
}

.banner .index-banner-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    cursor: pointer;
}

.banner .index-banner-bullet-active {
    background: #fff;
}


.index-page1 {
    position: relative;
}

.index-page1>img {
    width: 100%;
    object-fit: contain;
}

.index-page1>.info {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index-page1>.info h3 {
    width: 50%;
    font-size: 32px;
    margin-bottom: 30px;
    white-space: nowrap;
}

.index-page1>.info h3 b {
    font-weight: bold;
}

.index-page1>.info h3 span {
    font-weight: bold;
    color: var(--color);
}

.index-page1>.info .editor {
    width: 60%;
    font-size: 18px;
    line-height: 2.2;
    color: #444;
    margin-bottom: 80px;
}

.index-page1>.info .more {
    align-items: center;
}

.index-page1>.info .more p {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-right: 20px;
}

.index-page1>.info .more a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);

}

.index-page1>.info .more a i {
    display: inline-block;
    font-size: 16px;
    transform: rotate(-45deg);
    font-weight: bold;
    color: var(--color);
}

.index-page2 {
    position: relative;
}

.index-page2 .w1400 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.index-page2 .w1400 .swiper1 {
    flex: 1;
}

.index-page2 .w1400 .swiper1 .swiper-wrapper {
    align-items: center;
}

.index-page2 .w1400 .swiper1 .swiper-slide {
    align-items: center;
}

.index-page2 .w1400 .swiper1 .swiper-slide img {
    width: 50%;
    margin: 0 10%;
    max-width: 700px;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info {
    width: 30%;
    color: #fff;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info h3 {
    font-size: 36px;
    line-height: 2;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info h4 {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 10px;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info p {
    font-size: 20px;
    line-height: 1.8;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info ul {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 30px 0 50px;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info ul li {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #000; */
    margin-right: 10px;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info ul li img {
    width: 100%;
    height: 100%;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info ul li i {
    font-size: 30px;
    opacity: 0.8;
}

.index-page2 .w1400 .swiper1 .swiper-slide .info a {
    display: inline-block;
    width: 160px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}

.index-page2 .w1400 .swiper2 {
    margin-left: 5%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    border-radius: 20px;
}

.index-page2 .w1400 .swiper2 .swiper-slide {
    width: 240px;
    padding: 0 20px;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;


    text-align: left;
    color: #666;
    cursor: pointer;
}

.index-page2 .w1400 .swiper2 .swiper-slide-thumb-active {
    background: var(--color);
    color: #fff;
}

.index-page2 .w1400 .swiper2 .swiper-slide p {
    position: relative;
    padding: 20px 0 20px 40px;
    border-bottom: 1px dashed rgba(177, 177, 177, 0.5);
}

.index-page2 .w1400 .swiper2 .swiper-slide p::before {
    content: '';
    display: inline-block;
    border-right: 10px solid #999;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);

}

.index-page2 .w1400 .swiper2 .swiper-slide-thumb-active p::before {
    border-right: 10px solid #fff;
}

.index-page3 {
    background: url(../images/index_page3_bg.jpg) no-repeat center;
    background-size: cover;
    min-height: 500px;
    width: 100%;
    color: #fff;
}

.index-page3-title {
    padding: 75px 0 0px;
    margin-top: -10px;
}

.index-page3-title h3 {
    font-size: 36px;
    color: var(--color);
}

.index-page3-title h4 {
    font-size: 24px;
    margin-top: 10px;
    color: #999;
}

.index-page3-1 {
    background: url(../images/index_page3_1.png) no-repeat center;
    background-size: cover;
    margin-bottom: 60px;
    /* height: 850px; */
}

.index-page3-1 .w1600 {
    transform: translateY(50px);
    position: relative;
}

.index-page3-1 .w1600 .swiper1 {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.index-page3-1 .w1600 .swiper1 .swiper-slide {
    position: relative;
}

.index-page3-1 .w1600 .swiper1 .swiper-slide .info {
    position: absolute;
    bottom: 20%;
    left: 4%;
    width: 80%;
}

.index-page3-1 .w1600 .swiper1 .swiper-slide .info h3 {
    font-size: 36px;
    font-weight: bold;
}

.index-page3-1 .w1600 .swiper1 .swiper-slide .info p {
    margin-top: 10px;
    font-size: 24px;
    max-width: 600px;
    line-height: 1.5;
    width: 80%;
}

.index-page3-1 .w1600 .swiper2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.index-page3-1 .w1600 .swiper2 .swiper-slide {
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;

}

.index-page3-1 .w1600 .swiper2 .swiper-slide:last-child {
    border-right: none;
}

.index-page3-1 .w1600 .swiper2 .swiper-slide-thumb-active {
    background: var(--color);
}

.index-page3-2 {
    padding-bottom: 75px;
}

.index-page3-2 .index-page3-title {
    justify-content: space-between;
    align-items: flex-end;
}

.index-page3-2 .index-page3-title .right .more {
    align-items: center;
}

.index-page3-2 .index-page3-title .right .more p {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-right: 20px;
}

.index-page3-2 .index-page3-title .right .more a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);

}

.index-page3-2 .index-page3-title .right .more a i {
    display: inline-block;
    font-size: 16px;
    transform: rotate(-45deg);
    font-weight: bold;
    color: var(--color);
}

.index-page3-2 .bottom {
    margin-top: 50px;
    justify-content: space-between;
}

.index-page3-2 .bottom .left {
    width: 49%;
    height: 600px;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    color: #000;
}

.index-page3-2 .bottom .left a {
    width: 100%;
    height: 100%;
}

.index-page3-2 .bottom .left .img {
    border-radius: 20px;
    overflow: hidden;
    /* height: 400px; */
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
}

.index-page3-2 .bottom .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page3-2 .bottom .left .img span {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--color);
    padding: 0 30px;
    border-top-right-radius: 20px;
    font-size: 18px;
    color: #fff;
}

.index-page3-2 .bottom .left .img:hover img {
    transform: scale(1.1);
    transition: all .5s;
}

.index-page3-2 .bottom .left h4 {
    font-size: 18px;
    margin: 20px 10px 10px;
    line-height: 2;
}

.index-page3-2 .bottom .left p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-left: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-emphasis: ellipsis;
    overflow: hidden;
}

.index-page3-2 .bottom .left a:hover {
    color: unset;
}

.index-page3-2 .bottom .right {
   /*  height: 600px; */
   height:100%;
    background: #fff;
    width: 50%;
    border-radius: 20px;
}

.index-page3-2 .bottom .right li {
    padding: 20px;
    border-bottom: 1px solid rgba(79, 79, 79, .2);
    color: #000;
}

.index-page3-2 .bottom .right li:last-child {
    border-bottom: none;
}

.index-page3-2 .bottom .right li a:hover {
    color: unset;
}

.index-page3-2 .bottom .right li .img {
    width: 30%;
    height: 160px;
    border-radius: 20px;
    margin-right: 5%;
    overflow: hidden;
}

.index-page3-2 .bottom .right li .img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.index-page3-2 .bottom .right li:hover img {
    transform: scale(1.1);
    transition: all .5s;
}

.index-page3-2 .bottom .right li .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.index-page3-2 .bottom .right li .item-info h5 {
    font-size: 16px;
    color: #999;
}

.index-page3-2 .bottom .right li .item-info h4 {
    font-size: 18px;
}

.index-page3-2 .bottom .right li .item-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-emphasis: ellipsis;
    overflow: hidden;
}

.index-page4 {
    position: relative;
    font-size: 0;
}

.index-page4 video {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    object-fit: cover;
}

.index-page4 .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%; */
    text-align: center;
    color: #fff;
}

.index-page4 .info h3 {
    font-size: 36px;
    line-height: 1.6;
    font-weight: bold;
}

.index-page4 .info h4 {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 30px;
}

.index-page4 .info ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}


.banner2 {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner2 .img {
    width: 100%;
    height: 100%;
}

.banner2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner2 .w1400 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
    color: #fff;
}

.banner2 .w1400 h2 {
    font-size: 60px;
    line-height: 1.3;
}

.banner2 .w1400 h3 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 5%;
}

.banner2 .w1400 a {
    display: inline-block;
    padding: 10px;
    border: 1px dashed #fff;
    border-radius: 50%;
}

.banner2 .w1400 i {
    display: inline-block;
    width: 60px;
    height: 60px;
    font-size: 32px;
    color: var(--color);
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
}

.common-nav {
    padding: 50px 0 40px;
    border-bottom: 2px solid #bfbfbf;
}

.common-nav ul {
    gap: 20px;
}

.common-nav li {
    background: #EFEFEF;
    border-radius: 25px;
    color: var(--color);
    font-size: 18px;
}

.common-nav li.active {
    background: var(--color);
    color: #fff;
}

.common-nav li:hover {
    background: var(--color);
    color: #fff;
}

.common-nav li a {
    display: inline-block;
    width: 100%;
    padding: 0 40px;
    height: 50px;
    line-height: 50px;
}

.about-page {
    padding: 50px 0 0;
}

.about-page1 {
    justify-content: space-between;
    padding: 70px 0;
}

.about-page1 .left {
    flex: 1;
    max-width: 600px;
}

.about-page1 .left h2 {
    font-size: 36px;
    line-height: 1.6;
    color: #333;
    /* white-space: nowrap; */
    position: relative;
    padding-bottom: 20px;
}

.about-page1 .left h2::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 4px;
    background: #FF7E2D;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-page1 .left h3 {
    font-size: 30px;
    font-weight: bold;
    color: var(--color);
    margin: 40px 0 35px;
}

.about-page1 .left .editor {
    width: 90%;
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.about-page1 .left li{
    display: none;
}
.about-page1 .left li:first-child{
    display: block;
}



.about-page1 .right {
    width: 40%;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page1 .right .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    padding: 60px;
    border-radius: 50%;
    border: 2px solid var(--color);
}

.about-page1 .right img {
    border-radius: 50%;
}

.about-page1 .right ul li {
    position: absolute;
    text-align: center;
     cursor: pointer; 
}

.about-page1 .right ul li:hover {
    color: var(--color);
}

.about-page1 .right ul li:hover i {
    background: var(--color);
    color: #fff;
}

.about-page1 .right ul li p {
    font-size: 16px;
    line-height: 40px;
}

.about-page1 .right ul li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid var(--color);
    background: #fff;
    font-size: 30px;
    color: var(--color);
}

.about-page1 .right ul li:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -80px);
    display: flex;
    flex-direction: column-reverse;
}

.about-page1 .right ul li:nth-child(1) i {
    padding-bottom: 5px;
}

.about-page1 .right ul li:nth-child(2) {
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 50%;
    left: 100%;
    transform: translate(-40px, -50%);
}

.about-page1 .right ul li:nth-child(2) p {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(10px, -50%);
    white-space: nowrap;
}

.about-page1 .right ul li:nth-child(3) {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -40px);
}

.about-page1 .right ul li:nth-child(4) {
    top: 50%;
    right: 100%;
    transform: translate(40px, -50%);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.about-page1 .right ul li:nth-child(4) p {
    margin-right: 10px;
    white-space: nowrap;
}

.about-page2 {
    padding: 40px 0;
}

.about-page2 .img {
    width: 94%;
    height: 600px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-page2 .img iframe{
	width:100%;
	height:600px;
}


.about-page2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page2 .img .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

.about-page2 .img .info h2 {
    font-size: 72px;
    line-height: 1.6;
}

.about-page2 .img .info h4 {
    font-size: 24px;
}

.about-page2 .bottom h3 {
    font-size: 36px;
    color: var(--color);
    line-height: 3;
    /* font-weight: bold; */
}

.about-page2 .bottom ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2%;
}

.about-page2 .bottom ul li {
    border-top: 1px solid #ccc;
    padding: 30px 0 40px;
}

.about-page2 .bottom ul li h4 {
    font-size: 28px;
    line-height: 2.4;
}

.about-page2 .bottom ul li p {
    color: #444;
    width: 90%;
    font-size: 20px;
    line-height: 1.6;
}

.about-page3 {
     height: 700px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.about-page3 img{
	 position: absolute;
	 top:50%;
	 left:50%;
	     transform: translate(-50%,-50%);
}
.about-page3 iframe{
    width: 100%;
    height: 700px;
}
.about-page3 .video {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color);
	    background: transparent;
}

.about-page3 .video i {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-page3 .video p {
    font-size: 22px;
}

.about-page4 {
    padding: 120px 0;
}

.about-page4 .w1400 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-page4 .left {
    width: 40%;
    min-height: 50vh;
    position: sticky;
    top: 120px;
    left: 0;
    /* float: left; */
}

.about-page4 .left h2 {
    font-size: 36px;
    line-height: 3;
    font-weight: bold;
    color: var(--color);
}

.about-page4 .left .editor {
    font-size: 18px;
    color: #333;
    line-height: 2;
}

.about-page4 .right {
    width: 50%;
    /* float: right; */
}

.about-page4 .right .imgs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px
}

.about-page4 .right .imgs img {
    width: 100%;
    height: 100%;
    box-shadow: 4px 5px 5px 1px rgba(60, 60, 60, .8);
    border: 15px solid #000;
}

.about-page4 .right img:nth-child(odd) {
    transform: translateY(50px);
}

.about-page5 {
    background: #E6E6E6;
    padding: 60px 0;
    line-height: 1.6;
}

.about-page5 h2 {
    font-size: 36px;
    color: var(--color);
    font-weight: bold;
}

.about-page5 h3 {
    font-size: 24px;
    color: #999;
}

.about-page5 ul {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.about-page5 ul li {
    border-radius: 10px;
    overflow: hidden;
}

.about-page5 ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.news-detail-page .left .info .editor iframe{
	width:100%;
	height:500px;
	
}
.product-page1 {
    padding: 60px 0;
    position: relative;

}

.product-page1 .swiper-btn {
    position: absolute;
    top: 250px;
    /* transform: translateY(-50%); */
    z-index: 6;
    cursor: pointer;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.product-page1 .swiper-btn:hover {
    background: var(--color);
}

.product-page1 .swiper-btn:hover i {
    color: #fff;
}

.product-page1 .swiper-btn i {
    font-size: 24px;
    color: #333;
}

.product-page1 .swiper-prev-btn {
    left: 20px;
    transform: rotate(180deg);
}

.product-page1 .swiper-next-btn {
    right: 20px;
}

.product-page1 .swiper {
    width: 80%;
    text-align: center;
}

.product-page1 .swiper .swiper-slide>img {
    width: 100%;
    height: 600px;
    object-fit: contain;
}

.product-page1 .swiper .info {
    padding: 30px 0;
    color: #666;
    font-size: 24px;
    line-height: 1.6;
}

.product-page1 .swiper .info h3 {
    font-size: 36px;
    color: #333;
    font-weight: bold;

}

.product-page1 .swiper .info .imgs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px 0;

}

.product-page1 .swiper .info .imgs li {
    border-radius: 50%;
    background: #FA8424;
    margin: 0 20px;
    padding: 10px;
}

.product-page1 .swiper .info img {


    width: 30px;
    height: 30px;
}

.product-page1 .more {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--color);
    color: var(--color);
    border-radius: 20px;
}

.product-page1 .more:hover {
    background: var(--color);
    color: #fff;
}

.product-page2 .top {
    padding: 80px 0;
    width: 100%;
    background: #F4F4F4;
    border-radius: 20px;
}

.product-page2 .top .flex-x {
    justify-content: space-between;
}

.product-page2 .top .left h2 {
    font-size: 60px;
    /* font-weight: bold; */
}

.product-page2 .top .left h3 {
    font-size: 32px;
    line-height: 2;
    font-weight: lighter;
}

.product-page2 .top .right {
    margin-right: 10%;
    position: relative;
}

.product-page2 .top .right button {
    border: 1px solid #333;
    height: 50px;
    padding: 0 100px 0 25px;
    border-radius: 25px;
    position: relative;
    font-size: 18px;
    z-index: 7;
}

.product-page2 .top .right button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    border-top: 10px solid #999;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.product-page2 .top .right ul {
    position: absolute;
    top: 25px;
    right: 0;
    width: 100%;
    /* margin: 0 25px; */
    background: #fff;
    border: 1px solid #999;
    padding: 30px 0 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
    overflow: hidden;
	z-index:5;
}

.product-page2 .top .right ul li {
    border-bottom: 1px solid #999;
    text-align: center;
}

.product-page2 .top .right ul li:last-child {
    border-bottom: none;
}

.product-page2 .top .right ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.product-page2 .top .right ul li:hover {
    background: var(--color);
    color: #fff;
}

.product-page2 .product-list {}

.product-page2 .product-list>li {
    border-bottom: 2px solid #bfbfbf;
    padding: 100px 0 40px;
    margin: 30px 0;

}

.product-page2 .product-list>li:hover {
    background: #EFEFEF;
    border-radius: 20px;
    border-color: #EFEFEF;
}

.product-page2 .product-list>li .flex-x {
    justify-content: space-between;
}

.product-page2 .product-list>li .flex-x .left {
    width: 30%;
    font-size: 16px;
    line-height: 2;
    height: 100%;
}

.product-page2 .product-list>li .flex-x .left h4 {
    font-size: 36px;
    line-height: 1.2;
}

.product-page2 .product-list>li .flex-x .left .editor {
    min-height: 140px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0;
}

.product-page2 .product-list>li .flex-x .left .more {
    display: inline-block;
    font-size: 18px;
    line-height: 2.4;
}

.product-page2 .product-list>li .flex-x .left .more i {
    display: inline-block;
    transform: rotate(-45deg);
    font-size: 16px;
    margin-left: 15px;
    color: #999;
}

.product-page2 .product-list>li:hover .more {
    color: var(--color);
    border-bottom: 1px solid var(--color);
}

.product-page2 .product-list>li .flex-x .right {
    width: 60%;
}

.product-page2 .product-list>li .flex-x .right .r-list {
    justify-content: center;
    gap: 20px;
}

.product-page2 .product-list>li .flex-x .right .r-list li {
    width: 45%;
    text-align: center;
}

.product-page2 .product-list>li .flex-x .right .r-list li img {
    width: 100%;
    object-fit: contain;
}

.product-page2 .product-list>li .flex-x .right .r-list li p {
    font-size: 16px;
    margin-top: 30px;
}

.header-bg {
    width: 100%;
    height: 90px;
    background: var(--color);
}

.product-detail-page {
    padding: 50px 0;
}

.product-detail-page .top {
    padding: 50px 0;
}

.product-detail-page .top .left {
    width: 20%;
    margin-right: 5%;

}

.product-detail-page .top .left h2 {
    font-size: 48px;
    font-weight: bold;
}

.product-detail-page .top .left h3 {
    font-size: 30px;
    line-height: 2;
}

.product-detail-page .top .left .btns {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.product-detail-page .top .left .btns .btn {
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    cursor: pointer;

    color: #666;
}

.product-detail-page .top .left .btns .l-btn {
    transform: rotate(180deg);
}

.product-detail-page .top .left .btns .btn i {
    font-size: 30px;
}

.product-detail-page .top .left .btns .btn:hover {
    background: var(--color);
    color: #fff;
}


.product-detail-page .top .right {
    width: 75%;
    padding-left: 30px;
}

.product-detail-page .top .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-page .title {
    width: 100%;
    padding: 0 40px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 30px;
    background: #F4F4F4;
}

.product-detail-page .editor {
    padding: 50px 40px;
    font-size: 18px;
    line-height: 2;
}
.product-detail-page .editor table{
	    width: 100%;
}
.product-detail-page .editor td {
       height: 40px;
    background: #e5e5e5;
    border-color: #fff;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
	line-height:1.6;
	
}
.product-detail-page .editor tr td:first-child{
	white-space:nowrap;
}
.product-detail-page .editor tr:first-child td:first-child{
	white-space:wrap;
}
.product-detail-page .editor tr:first-child td{
	background: #18238c;
    color: #fff;
    padding: 10px;
}
.case-page {}

.case-page ul {
    display: flex;
    flex-direction: column;
}

.case-page ul li {
    border-bottom: 1px solid #bfbfbf;
    padding: 60px 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.case-page ul li:last-child {
    border-bottom: none;
}

.case-page ul li .flex-x {
    justify-content: space-between;
}

.case-page ul li .left {
    width: 40%;
}

.case-page ul li .left h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.case-page ul li .left .editor {
    font-size: 22px;
    color: #666;
    line-height: 2;
}

.case-page ul li .right {
    width: 50%;
}

.case-page ul li .right img {
    width: 100%;
    object-fit: contain;
	border-radius:10px;
}

.case-video-page {
    padding: 50px 0;
}

.case-video-page ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-video-page ul li {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
	font-size:0;
	cursor:pointer;
}
.case-video-page ul li span{
	display:none;
}
.case-video-page ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.case-video-page ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-video-page ul li i {
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-page .index-page3-2 .bottom .left {
    padding: 20px 0;
    width: 46%;
}

.news-page .list {
    background: #F5F7FB;
    width: 100%;
    padding: 60px 0;

}

.news-page .list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
}

.news-page .list li {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
}

.news-page .list li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    color: var(--color);
}

.news-page .list li:hover a {
    color: var(--color);
}

.news-page .list li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: #000;
    font-size: 14px;
}

.news-page .list li a h4 {
    font-size: 20px;
    margin: 20px 0;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-page .list li a img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-page .list li .more {
    font-size: 16px;
    color: var(--color);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.news-page .list li .more i {
    font-size: 28px;
    margin-right: 10px;
}

.news-list-page ul {
    padding: 20px 0;
}

.news-list-page ul li {
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #EEF2F8;

}

.news-list-page ul li:hover {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .2);
}

.news-list-page ul li a {
    width: 100%;
    height: 100%;
    max-height: 500px;
}

.news-list-page ul li a .left {
    width: 35%;
    padding: 40px;
    justify-content: space-between;
}

.news-list-page ul li a .left h5 {
    font-size: 22px;
    color: #999;
}

.news-list-page ul li:hover a .left h5 {
    color: var(--color);
}

.news-list-page ul li a .left h3 {
    font-size: 30px;
    color: #333;
    margin: 20px 0;
}

.news-list-page ul li:hover a .left h3 {
    color: var(--color);
}

.news-list-page ul li a .left .editor {
    font-size: 18px;
    color: #666;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    text-overflow: ellipsis;
}

.news-list-page ul li:hover a .editor {
    color: var(--color);
}

.news-list-page ul li a .left .more {
    font-size: 18px;
    color: #333;
}

.news-list-page ul li:hover a .more {
    color: var(--color);
}

.news-list-page ul li a .left .more i {
    margin-left: 10px;
    display: inline-block;
    transform: rotate(-45deg);
    color: #999;
}

.news-list-page ul li:hover a .more i {
    color: var(--color);
}

.news-list-page ul li a .right {
    flex: 1;
}

.news-list-page ul li a .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-nav {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    color: #666;
    margin: 30px 0;
}

.detail-nav span {
    color: #999;
    margin: 0 10px;
}

.detail-nav a:hover {
    color: var(--color);
    text-decoration: underline;
}

.news-detail-page .left {
    flex: 1;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.news-detail-page .left .info .top {
    padding: 30px 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news-detail-page .left .info .top .top-l h3 {
    font-size: 30px;
    color: var(--color);
}

.news-detail-page .left .info .top .top-l h5 {
    font-size: 16px;
    color: #999;
    margin-top: 15px;
}

.news-detail-page .left .info .top .top-r {
    margin-right: 5%;
}

.news-detail-page .left .info .top .top-r a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    background: var(--color);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}

.news-detail-page .left .info .editor {
	width:100%;
    padding: 30px 10% 30px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
	overflow:hidden;
}
.news-detail-page .left .info .editor span{
	   /*  text-wrap-mode: wrap !important; */
}
.news-detail-page .right {
    margin-top: 120px;
    width: 30%;
    padding-left: 4%;
}

.news-detail-page .right h4 {
    color: #333;
    font-size: 24px;
}

.news-detail-page .right ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news-detail-page .right ul li a {
    display: inline-block;
    padding: 30px 0;
    width: 100%;
}

.news-detail-page .right ul li a img {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    object-fit: contain;
}

.news-detail-page .right ul li a p {
    color: #333;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 5px;
}

.news-detail-page .right ul li a span {
    font-size: 14px;
    color: #999;
}

.service-page .editor {
    padding: 50px 0;
}


.download-page ul li a {
    max-height: none;
}

.download-page ul li a .left {
    justify-content: space-around;
}

.download-page ul li a .left .more i {
    transform: none;
}

.join-page {
    padding: 50px 0;
    color: #333;
}

.join-page li {
    font-size: 16px;
}

.join-page>h2 {
    font-size: 48px;
    line-height: 2;
    margin-bottom: 10px;
}

.join-page>h4 {
    font-size: 20px;
    line-height: 1.4;
}

.join-page .ul1 {

    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-page .ul1>li {}

.join-page .ul1 .li1 .ul2 {
    background: #F6F9FC;
    border-color: #F6F9FC;
    font-weight: bold;
}

.join-page .ul2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3%;
    /* height: 75px; */
    /* line-height: 75px; */
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 20px 40px 20px 50px;

}

.join-page .ul2>li {
    flex: 1;
}

.join-page .ul2>li:last-child {
    width: 110px;
    text-align: center;
    flex: none;
}

.join-page .ul2>li span {
    display: inline-block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    color: #fff;
    background: var(--color);
    border-radius: 20px;
    cursor: pointer;
}

.join-page .ul1 .info {
    width: 100%;
    margin: 20px 0;
    border: 1px solid var(--color);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 40px 40px;
    display: none;
}

.join-page .ul1 .info .title {
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    padding: 30px 15px;
    border-bottom: 1px solid #eee;
}

.join-page .ul1 .info .title h5 {
    font-size: 24px;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 20px;
}

.join-page .ul1 .info .title p {
    color: #666;
    font-size: 16px;
}

.join-page .ul1 .info .title p span {
    padding: 0 20px;
}

.join-page .ul1 .info .title i {
    font-size: 26px;
    color: #999;
    cursor: pointer;
}

.join-page .ul1 .info .info-ul {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.join-page .ul1 .info .info-ul li {
    padding: 10px 0;
}

.join-page .ul1 .info .info-ul li h6 {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 10px;
    color: var(--color);
}

.join-page .ul1 .info .info-ul li .editor {
    font-size: 16px;
    color: #666;
    line-height: 2;
}

.join-page .ul1 .info .email {
    display: inline-block;
    margin-top: 30px;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    background: #FF8B06;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-left: 15px;
}

.contact-page {
    color: #333;
    margin-bottom: 100px;
}

.contact-page li {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.contact-page li h3 {
    font-size: 48px;
    margin-bottom: 30px;
}

.contact-page li h5 {
    font-size: 20px;
    line-height: 1.4;
}

.contact-page li .w1400 {
    padding: 50px 0;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-page li:first-child .w1400 {
    flex-direction: column;
}

.contact-page li .left {
    width: 40%;
    font-size: 30px;
}

.contact-page li .right {
    width: 60%;
    line-height: 2;
}

.contact-page li .right>p:first-child {
    font-size: 18px;
}

.contact-page li .right>p:last-child {
    font-size: 16px;
}

.contact-page .right-list {
    display: flex;
    flex-wrap: wrap;
}

.contact-page .right-list .item {
    border-bottom: none;
    width: 33.3%;
    padding-right: 10%;
    padding: 20px 10% 20px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.contact-page .right-list .item:first-child {
    width: 100%;
}

.contact-page .right-list .item .r p {
    font-size: 18px;
    white-space: nowrap;
}
.contact-page .right-list .item .r p.i{
    font-style: italic;
}
.contact-page .right-list .item .l img{
    width: 30px;
    ovject-fit: contain;
}
.contact-page .right-list .item .l i {
    font-size: 30px;
    display: inline-block;
    line-height: 1.2;
    color: #333;
}


.contact-page .right-list .item:nth-child(3) .l i {
    font-size: 28px;
}

.vr-page {
    margin-bottom: 100px;
}

.vr-page iframe {

    width: 100%;
    height: 80vh;
    border-radius: 30px;
}

footer {

    width: 100%;
    display: flex;
    flex-direction: column;
    color: #ccc;

}

footer .top {
    display: flex;
    flex-direction: row;
    background: #363636;
    padding: 75px 0 0;
}

footer .top .w1600 {}

footer .left {
    width: 25%;
    margin-right: 5%;

}

footer .left .logo {}

footer .left .ewms {
    padding: 20px 10px 30px;
    border-bottom: 1px solid rgba(200, 200, 200, 0.2);
}

footer .left .ewms li {
    padding: 0 5px;
    text-align: center;

}

footer .left .ewms li .img {
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    margin-bottom: 5px;
}

footer .left .ewms li .img img {
    border-radius: 5px;
}

footer .left .editor {
    padding: 30px 10px;
}

footer .left .editor p {
    font-size: 16px;
    color: #ccc;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

footer .left .editor p::before {
    content: "";
    display: inline-block;
    border-left: 10px solid #FF8C05;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    /* margin: 0 14px; */
    position: absolute;
    left: 0;
    top: 11px;
}

footer .right {
    flex: 1;
}

footer .right .nav {
    justify-content: space-between;
    margin-top: 20px;
}

footer .right .nav2 li {
    font-size: 16px;
    line-height: 3;
    color: #ccc;
}

footer .right .nav2 li:first-child {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}


footer .bottom {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    background: #000;
}

footer .bottom .w1600 {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .bottom img {
    height: 100%;
    object-fit: contain;
    padding: 14px 0;
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: #5280e0;
	border: 1px solid #5280e0;
	color: #FFFFFF;
	font-weight: bolder;
}




.dialog{
    position: fixed;
    top: 0 ;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11;
    background: rgba(0, 0, 0, .8);
    
	display:none;
}
.dialog .dialog-content{
    width: 100%;
	height:100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.dialog .dialog-content .video{
    width: 70%;
    height: 80vh;
    
}
.dialog .dialog-content .video iframe{
	width:100%;
	height:100%;
	object-fit: contain;
}
.dialog .close{
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 19;
    color: #fff;
   cursor: pointer;
   transform: translateY(-50%);
}
.dialog .close i{
    font-size: 40px;

}