:root {
    --main-color: #13539b;
}

/* header */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav-logo a {
    display: block;
    padding: 16px 0;
}

.header-nav-logo img {
    display: block;
    width: auto;
    height: 48px;
}

.header-nav-menu {
    padding: 0;
    background-color: transparent;
}

.header-nav-menu .layui-nav-item {
    line-height: initial;
	position: relative;
    display: inline-block; 
}

.header-nav-menu .layui-nav-item > a {
    font-size: 15px;
    line-height: 80px;
    color: #333333;
}

.header-nav-menu .layui-nav-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    width: 0;
    height: 3px;
    background-color: var(--main-color);
    transition: all .2s;
    -webkit-transition: all .2s;
    pointer-events: none;
}

.header-nav-menu .layui-nav-item:hover:after,
.header-nav-menu .layui-this:after {
    top: auto;
    bottom: 0;
    width: 100%;
}

.header-nav-menu .layui-nav-item:hover a {
    color: #333333;
}

.header-nav-menu .layui-nav-child {
    top: 80px;
}

.header-nav-menu .layui-nav-bar {
    background-color: var(--main-color);
}

.header-nav-lang {
    display: flex;
    align-items: center;
}

.header-nav-lang-pc {
    font-size: 15px;
    line-height: 40px;
    color: #333333;
}

.header-nav-lang-pc i {
    font-size: 15px;
    margin-left: 8px;
}

.header-nav-lang-menu {
    font-size: 18px;
    line-height: 56px;
    color: #333333;
    width: 32px;
    text-align: center;
}

@media (min-width: 1200px) {
    .header-nav-lang-m,
    .header-nav-lang-menu {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-nav-menu {
        display: none;
    }

    .header-nav-lang-pc {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-nav-logo a {
        padding: 4px 0;
    }

    .header-nav-logo img {
        height: 44px;
    }
}

/* m-nav */
.m-nav {
    border-radius: 0;
    background-color: #ffffff;
}

.m-nav .layui-menu {
    margin: 4px 0;
    background-color: #ffffff;
}

.m-nav .layui-menu .layui-menu-item-divider {
    margin: 4px 0;
    border-bottom: 1px solid #cccccc;
}

.m-nav .layui-menu li {
    margin: 0;
    padding: 0;
}

.m-nav .layui-menu li:hover {
    background-color: transparent;
}

.m-nav .layui-menu li .logo {
    display: block;
    padding: 8px 16px;
}

.m-nav .layui-menu li .logo img {
    display: block;
    height: auto;
    width: 100%;
}

.m-nav .layui-menu .layui-menu-item-checked {
    background-color: transparent !important;
    color: #ffffff;
}

.m-nav .layui-menu .layui-menu-item-checked > .layui-menu-body-title {
    background-color: var(--main-color) !important;
    color: #ffffff;
}

.m-nav .layui-menu .layui-menu-item-checked:after {
    display: none;
}

.m-nav .layui-menu li .layui-menu-body-title {
    color: #333333;
    padding: 8px 16px;
    margin: 0;	
}

.m-nav .layui-menu li .layui-menu-body-title i {
    color: #333333;
}

.m-nav .layui-menu li .layui-menu-body-title a {
    display: block;
    color: #333333;
    margin-left: -16px;
    margin-right: -16px;
}

.m-nav .layui-menu .layui-menu-item-checked > .layui-menu-body-title > a,
.m-nav .layui-menu .layui-menu-item-checked i,
.m-nav .layui-menu .layui-menu-item-checked2 a {
    color: #ffffff !important;
}

/* footer */
.footer-menu {
    background-color: #272727;
    padding: 32px 0;
}

.footer-menu-wrap {
    display: flex;
}

.footer-menu-item {
    width: 20%;
}

.footer-menu-item:nth-child(3) {
    width: 40%;
}

.footer-menu-item > h6 {
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-menu-item > a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgb(255 255 255 / 0.7);
}

.footer-menu-item > a:hover {
    color: #ffffff;
}

.footer-menu-item > a + a {
    margin-top: 8px;
}

.footer-menu-item > p {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgb(255 255 255 / 0.7);
}

.footer-menu-item > p + p {
    margin-top: 8px;
}

.footer-menu-item-code {
    max-width: 180px;
}

.footer-menu-item-code img {
	margin:0 auto;
    display: block;
    width: 120px;
    height: auto;
}

.footer-menu-item-code p {
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .footer-menu-wrap {
        flex-wrap: wrap;
    }

    .footer-menu-item {
        width: 50%;
    }

    .footer-menu-item:nth-child(3) {
        width: 100%;
        margin-top: 24px;
    }

    .footer-menu-item:nth-child(4) {
        width: 100%;
        margin-top: 24px;
    }

    .footer-menu-item-code {
        margin: 0 auto;
    }
}

.footer-copyright {
    background-color: #000000;
    padding: 16px 0;
}

.footer-copyright p {
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    text-align: center;
}

.footer-copyright p a {
    color: #ffffff;
}

.footer-copyright p a:hover {
    color: var(--main-color);
}

/* index-banner */
.index-banner-item {
    display: block;
}

.index-banner-item img {
    display: block;
    width: 100%;
    height: 100%;
}

/* page-banner */
.page-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* location */
.location {
    padding: 12px 0;
}

.location-body {
    display: flex;
    align-items: center;
}

.location-body i,
.location-body .layui-breadcrumb span {
    font-size: 15px;
    line-height: 24px;
    color: #999999 !important;
}

.location-body i {
    margin-right: 10px;
}

.location-body .layui-breadcrumb a {
    font-size: 15px;
    line-height: 24px;
    color: #333333 !important;
}

.location-body .layui-breadcrumb a:hover {
    color: var(--main-color) !important;
}

/* index-title */
.index-title {
    margin-bottom: 30px;
}

.index-title h6 {
    font-size: 30px;
    line-height: 36px;
    color: #333333;
	font-weight:bold;
}

.index-title p {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .index-title h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .index-title p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* index-cases */
.index-cases {
    margin-top: 56px;
}

.index-cases-body {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.index-cases-body-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.index-cases-body-item:hover {
    transition: transform 0.5s ease;
  transform: scale(1.1);
}

.index-cases-body-item img {
    display: block;
    width: 60px;
    height: auto;
    margin-right: 16px;
}


.index-cases-body-item p {
    font-size: 15px;
    line-height: 24px;
    color: #333333;
}


@media (max-width: 1199px) {
    .index-cases-body {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .index-cases {
        margin-top: 48px;
    }

    .index-cases-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .index-cases-body-item p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* index-video */
.index-video {
    margin-top: 30px;
	background-color:#f2f2f2;
	padding:40PX 0PX;
}

@media (max-width: 767px) {
    .index-video {
        margin-top: 48px;
    }
}

.index-video-body-item-img {
    position: relative;
}

.index-video-body-item-img img {
    display: block;
    width: 100%;
    height: auto;
}

.index-video-body-item-img .icon {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.index-video-body-item-img .icon i {
    font-size: 64px;
    color: #ffffff;
}

.index-video-body-item {
    display: block;
    cursor: pointer;
	margin-bottom:30px;
}

.index-video-body-item p {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    text-align: center;
	padding-top:12PX;
}

@media (max-width: 767px) {
	.index-video-body-item {
	display:none;
}
}

.index-video-body-item-wap {
	display:none;
}

.index-video-body-item-wap p {
    font-size: 15px;
    line-height: 24px;
    color: #333333;
    text-align: center;
    padding-top:12PX;
}

@media (max-width: 767px) {
    .index-video-body-item-wap {
    display: block;
    cursor: pointer;
	margin-bottom:30px;
}
}

.index-video-play {
    padding: 16px;
}

.index-video-play video {
    display: block;
    width: 1200px;
    height: auto;
}

/* index-news */
.index-news {
    margin: 40px 0px;
}

.index-news-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.index-news-body-item {
    display: block;
    cursor: pointer;
}

.index-news-body .ico {
    flex: none;
    width: 100px;
    padding: 12px 0;
    background-color: var(--main-color);
}

.index-news-body .ico p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
}

.index-news-body .ico p:nth-child(1) {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 2px;
}

.index-news-body .text {
    width: 500px;
    margin-left: 120px;
    padding: 12px 12px 12px 0;
}

.index-news-body .text h6 {
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
    margin-bottom: 8px;
}


.index-news-body:hover h6 {
    color: var(--main-color);
}

.index-news-body .text p {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}

@media (max-width: 767px) {
.index-news-body {
    grid-template-columns: repeat(1, 1fr);
}
}

/* index-about */
.index-about {
	margin-top:30px;
	padding-top:20PX;
    background-color: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height:560px;
}

.index-about-wrap {
    width: 100%;
}
.index-about-line {
	padding-top:10px;
	 border-bottom: 4px solid white;
    width: 55px;
	text-align: left;
}
.index-about-left {
	padding-top:30px;
    width: 100%;
    text-align: left;
}

.index-about-left h6 {
    font-size: 30px;
    font-weight: bolder;
    line-height: 42px;
    color: #ffffff;
}

.index-about-left p {
	text-align:left;
    font-size: 18px;
    line-height: 32px;
    color: #ffffff;
    margin-top: 15px;
}

.index-about-right {
	width: 100%;
	display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-top:50px;
}

.index-about-right-item {
	width:100%;
    text-align: center;
    padding: 30px;	
}

.index-about-right-item h6 {
    font-size: 35px;
    font-weight: bolder;
    line-height: 40px;
    color: #ffffff;
}

.index-about-right-item p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .index-about-wrap {
        flex-wrap: wrap;
		padding:10px;
    }

    .index-about-left h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .index-about-left p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 16px;
    }
.index-about-right {
  grid-template-columns: repeat(2, 1fr);

}

    .index-about-right-item {
        padding: 10px;
    }

    .index-about-right-item h6 {
        font-size: 32px;
        line-height: 40px;
    }

    .index-about-right-item p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* index-service */
.index-service {
	padding-top:10PX;
    background-color: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height:560px;
}

.index-service-wrap {
    width: 100%;
}

.index-service-left {
	padding-top:30px;
    width: 100%;
    text-align: left;
}

.index-service-left h6 {
    font-size: 30px;
    font-weight: bolder;
    line-height: 42px;
    color: #ffffff;
}

.index-service-left p {
	text-align:left;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    margin-top: 15px;
}

.index-service-right {
	margin-top:40px;
}

.index-service-right-item {
	padding-top:20px;
	width:100%;
    text-align: center;
	max-width:366px;
	margin:0 auto;
	margin-bottom:40px;
}

.index-service-right-item img{
	width:100%;
	padding-top:20px;
}

.index-service-line {
	max-width:330px;
	margin:0 auto;
	padding-top:10px;
    position: relative;
    height: 60px; 
    width: 100%; 
}

.index-service-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px; 
	background: linear-gradient(to right, white 0%, white calc(50% - 120px), transparent calc(50% - 120px), transparent calc(50% + 120px), white calc(50% + 120px), white 100%);
	transform: translateY(-50%); 
}

.index-service-right-item h6 {
	padding-top:5px;
    font-size: 25px;
    font-weight: bolder;
    line-height: 38px;
    color: #ffffff;
}

.index-service-right-item p {
	max-width:330px;
	margin:0 auto;
    font-size: 15px;
    line-height: 28px;
    color: #ffffff;
	text-align:left;
}

@media (max-width: 767px) {
    .index-service-wrap {
        flex-wrap: wrap;
		padding:10px;
    }
	.index-service-left {
	padding-top:20px;
}

    .index-service-left h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .index-service-left p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 16px;
    }
.index-service-right {
}

    .index-service-right-item {
        padding: 10px;
    }

    .index-service-right-item h6 {
        font-size: 32px;
        line-height: 40px;
    }

    .index-service-right-item p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 16px;
    }
.swiper-button-prev {
	display:none;
}
.swiper-button-next {
	display:none;
}
}

/* index-patent */
.index-patent {
    background-color: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height:400px;
}

.index-patent-wrap {
    width: 100%;
}

.index-patent-left {
	margin:0 auto;
	padding-top:100px;
    width: 100%;
	height:300px;
	max-width:700px;
}

.index-patent-left h6 {
	 text-align: center;
    font-size: 30px;
    font-weight: bolder;
    line-height: 42px;
    color: #6b4113;
}

.index-patent-left p {
	text-align: center;
    font-size: 18px;
    line-height: 32px;
    color: #6b4113;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .index-patent-wrap {
        flex-wrap: wrap;
		padding:10px;
    }

.index-patent-left {
	margin:0 auto;
	padding:20px;
	max-width:90%;
	height:auto;
}
    .index-patent-left h6 {
        font-size: 20px;
        line-height: 28px;
    }

}





/* pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 40px 0 0;
}

.pagination a {
    display: block;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    border: 1px solid #cccccc;
    margin: 4px;
}

.pagination li {
    float: left;
}

.pagination li.active a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #ffffff;
}

/* page */
.page {
    padding: 48px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 24px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
}

.page-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-content video {
	width:75%;
}


@media (max-width: 1024px) {
.page-content video {
	width:100%;
}

}
.page-content  p{
	font-size:15px;
	line-height:28px;
}

/* contact */
.contact {
    padding: 56px 0;
}

.contact-title {
    text-align: center;
    margin-bottom: 24px;
}

.contact-title h1 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
}

.contact-form {
    margin-bottom: 32px;
}

.contact-form .layui-form-label {
    float: none;
    width: auto;
    padding: 0 2px 8px;
    text-align: left;
}

.contact-form .layui-form-item {
    margin-bottom: 0;
}

.contact-form .layui-input-block {
    margin-left: 0;
}

.contact-form .layui-input:focus,
.contact-form .layui-textarea:focus {
    border-color: var(--main-color) !important;
}

.contact-form .layui-btn {
    background-color: var(--main-color);
}

.contact-body {
    margin-bottom: 32px;
}

.contact-body h5 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
    text-align: center;
    margin-bottom: 24px;
}

.contact-body-wrap {
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    margin: 0 auto;
    padding: 32px;
    background-color: #f5f5f5;
}

.contact-body-item h6 {
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.contact-body-item p {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 16px;
}

.contact-body-item img {
    display: block;
    width: 150px;
    margin: 0 auto;
}

.contact-content {
    line-height: 2;
}

.contact-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .contact {
        padding: 48px 0;
    }

    .contact-title h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-body h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-body-wrap {
        flex-wrap: wrap;
        padding: 24px;
    }

    .contact-body-item {
        width: 100%;
    }

    .contact-body-item + .contact-body-item {
        margin-top: 24px;
    }

    .contact-body-item h6 {
        margin-bottom: 16px;
    }

    .contact-body-item p {
        margin-bottom: 8px;
    }

    .contact-body-item img {
        margin: 0;
    }
}

/* development_history */
.development_history {
    padding: 48px 0;
}

.development_history-title {
    text-align: center;
    margin-bottom: 24px;
}

.development_history-title h1 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
}

.development_history-content-item {
    display: flex;
    position: relative;
    padding: 24px;
    transition: all .3s;
}

.development_history-content-item:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}

.development_history-content-item + .development_history-content-item {
    margin-top: 24px;
}

.development_history-content-item-one {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    margin-left: 240px;
}

.development_history-content-item-one i:first-of-type {
    flex: none;
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid var(--main-color);
    margin-top: 4px;
}

.development_history-content-item-one i:last-of-type {
    display: inline-flex;
    width: 2px;
    height: 100%;
    background-color: #f0f2f5;
    margin-top: 12px;
}

.development_history-content-item-two h5 {
    position: absolute;
    left: 20px;
    width: 240px;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    text-align: right;
}

.development_history-content-item-two h6 {
    font-size: 24px;
    line-height: 32px;
    color: #333333;
}

.development_history-content-item-two p {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin-top: 16px;
}

@media (max-width: 767px) {
    .development_history-content-item {
        padding: 0;
    }

    .development_history-content-item-one {
        padding-left: 0;
        margin-left: 0;
    }

    .development_history-content-item-two h5 {
        position: relative;
        left: 0;
        width: auto;
        text-align: left;
        margin-bottom: 16px;
    }

    .development_history-content-item-two h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .development_history-content-item-two p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* cases_list */
.cases_list {
    padding: 56px 0;
}

.cases_list-sidebar {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;    
    margin: 0;
}

.cases_list-sidebar > li {
    padding: 0;
}

.cases_list-sidebar ul {
    padding: 0 !important;
    margin: 0 !important;
}

.cases_list-sidebar ul li {
    padding: 0;
    margin: 0;
	border-top: 1px solid #dddddd;
}

.cases_list-sidebar li,
.cases_list-sidebar .layui-menu-body-title,
.cases_list-sidebar .layui-menu-body-title a {
    padding: 0;
    margin: 0;
	background:#f5f5f5;
	color: var(--main-color);;
}

.cases_list-sidebar > li + li {
    border-top: 1px solid #dddddd;
}

.cases_list-sidebar > li > .layui-menu-body-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 52px;
    color: #ffffff!important;
    background-color: var(--main-color);
    padding: 0 16px;
    margin: 0;
}

.cases_list-sidebar > li > .layui-menu-body-title i {
    font-size: 15px;
}

.cases_list-sidebar > li > .layui-menu-body-title:hover,
.cases_list-sidebar > li.layui-menu-item-down > .layui-menu-body-title {
    background-color: var(--main-color);
    color: #ffffff;
}

.cases_list-sidebar > li > .layui-menu-body-title:hover i {
    color: #ffffff !important;
}

.cases_list-sidebar > li.layui-menu-item-down:hover > .layui-menu-body-title i {
    color: #ffffff !important;
}

.cases_list-sidebar .cases_list-sidebar-one > li > .layui-menu-body-title {
    font-size: 15px;
	font-weight: bold;
    line-height: 40px;
    color: var(--main-color);
    padding-left: 16px;
}

.cases_list-sidebar .cases_list-sidebar-one > li > .layui-menu-body-title:hover,
.cases_list-sidebar .cases_list-sidebar-one > li.layui-menu-item-down > .layui-menu-body-title,
.cases_list-sidebar .cases_list-sidebar-one > li.layui-menu-item-down:hover > .layui-menu-body-title i {
    background-color: #028a96;
    color: #ffffff;
}

.cases_list-sidebar .cases_list-sidebar-one > li > .layui-menu-body-title a:hover,
.cases_list-sidebar .cases_list-sidebar-one > li > .layui-menu-body-title.active,
.cases_list-sidebar .cases_list-sidebar-one > li > .layui-menu-body-title.active a {
    background-color: #028a96;
    color: #ffffff;
	font-weight: bold;
}

.cases_list-sidebar .cases_list-sidebar-two > li > .layui-menu-body-title a {
    font-size: 15px;
    line-height: 36px;
    color: #333333;
    padding-left: 32px;
	background:#ffffff;
}

.cases_list-sidebar .cases_list-sidebar-two > li > .layui-menu-body-title a:hover,
.cases_list-sidebar .cases_list-sidebar-two > li > .layui-menu-body-title.active,
.cases_list-sidebar .cases_list-sidebar-two > li > .layui-menu-body-title.active a {
    color: #ffffff;
    background-color: #13a3b0;
}

.cases_list-sidebar .layui-menu-item-checked,
.cases_list-sidebar .layui-menu-item-checked2 {
    background-color: transparent !important;
    color: initial;
}

.cases_list-sidebar .layui-menu-item-checked:after {
    display: none;
}

.cases_list-right-item {
    display: block;
    text-align: center;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding-bottom: 12px;
    overflow: hidden;
    transition: all .3s;
}

.cases_list-right-item:hover {
    box-shadow: 0 0 6px rgba(22, 183, 119, 0.12);
	background-color:#f7fefb;
	border: 1px solid #16b777;
}

.cases_list-right-item img {
    display: block;
    width: 100%;
    height: auto;
}

.cases_list-right-item img:hover {
    transform: scale(1.05);
	transition: transform 0.5s ease-in-out;
}

.cases_list-right-item h6 {
    font-size: 15px;
    line-height: 26px;
    color: #333333;
    margin-top: 12px;
}

.cases_list-right-item p {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
    margin-top: 6px;
}

@media (max-width: 767px) {
    .cases_list {
        padding: 48px 0;
    }
}

/* cases_show */
.cases_show {
    padding: 56px 0;
}

.cases_show-body-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.cases_show-body-top-swiper {
    width: 500px;
    margin-right: 32px;
}

.cases_show-body-top-swiper img {
    display: block;
    width: 100%;
    height: auto;
}

.cases_show-body-top-param {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: calc(100% - 532px);
}

.cases_show-body-top-param-item {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
}

.cases_show-body-top-param-item:first-of-type {
    grid-column: span 2;
    display: flex;
    padding-bottom: 0;
    border-bottom: none;
}

.cases_show-body-top-param-item:first-of-type h1 {
    font-size: 24px;
    font-weight: normal;
    line-height: 32px;
    color: #333333;
}

.cases_show-body-top-param-item:first-of-type h5 {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin-top: 8px;
    margin-left: 12px;
}

.cases_show-body-top-param-item h6 {
    font-size: 13px;
    line-height: 21px;
    color: #666666;
}

.cases_show-body-top-param-item p {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
	font-weight: bold;
    margin-top: 5px;
}

.cases_show-body-detail_img {
    margin-bottom: 48px;
}

.cases_show-body-detail_img h6 {
    font-size: 20px;
	font-weight: bold;
    line-height: 28px;
    color: #002291;
    margin-bottom: 24px;
}

.cases_show-body-detail_img-swiper img {
    display: block;
    width: 100%;
    height: auto;
}

.cases_show-body-detail_img-swiper p {
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    padding: 8px;
    text-align: center;
}

.cases_show-body-video {
    margin-bottom: 48px;
}

.cases_show-body-video h6 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #002291;
    margin-bottom: 24px;
}

.cases_show-body-video video {
    display: block;
    width: 100%;
    height: auto;
}

.cases_show-body-process {
    margin-bottom: 48px;
}

.cases_show-body-process h6 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #002291;
    margin-bottom: 24px;
}

.cases_show-body-process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cases_show-body-process-list img {
	border: 1px solid #cccccc;
    display: block;
    width: 100%;
    height: auto;
}

.cases_show-body-process-list p {
    font-size: 15px;
    line-height: 25px;
    color: #333333;
    padding: 8px;
    text-align: center;
}

.cases_show-body-details {
    margin-bottom: 48px;
}

.cases_show-body-details h6 {
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: #002291;
    margin-bottom: 24px;
}


.layui-table {
	margin:0 auto;
	width:100%;
	color: #333333;
}
.layui-table td,
.layui-table th {
	border-color: #000000;
}
.layui-table td {
	text-align: center;
}
.layui-table td:first-of-type {
	color: #ffffff;
	background-color: #808080;
}
.layui-table td:nth-child(2) {
	color: #333333;
	background-color: #f2f2f2;
}


.cases_show-body-details-body img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1199px) {
    .cases_show-body-top {
        flex-wrap: wrap;
    }

    .cases_show-body-top-swiper {
        width: 100%;
    }

    .cases_show-body-top-param {
        gap: 16px;
        width: 100%;
        margin-top: 24px;
        grid-template-columns: repeat(3, 1fr);
    }
	.cases_show-body-detail_img-swiper p {
		margin-bottom:30px;
}
}

@media (max-width: 767px) {
    .cases_show {
        padding: 48px 0;
    }

    .cases_show-body-top-param {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases_show-body-top-param-item {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .cases_show-body-process-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
	.cases_show-body-detail_img-swiper p {
		margin-bottom:30px;
}
}

/* download-list */
.download-list {
    padding: 56px 0;
    background-color: #f1f5f9;
}

.download-list-wrap {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 32px;
}

.download-list-body {
    margin-bottom: 24px;
}

.download-list-body-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #d1d5db;
}

.download-list-body-item-con {
    display: flex;
    align-items: center;
}

.download-list-body-item-con .text h6 {
    font-size: 15px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 6px;
}

.download-list-body-item-con .text h6:hover {
    color: var(--main-color);
}

.download-list-body-item-con .text p {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}

.download-list-body-item-con .ico {
    margin-right: 12px;
}

.download-list-body-item-con .ico svg {
    width: 48px;
    height: 48px;
}

.download-list-body-item button {
    background-color: var(--main-color);
    color: #ffffff;
}

@media (max-width: 767px) {
    .download-list {
        padding: 48px 0;
    }

    .download-list-wrap {
        padding: 16px;
    }

    .download-list-body-item-con .ico {
        display: none;
    }
}

/* img-list */
.img-list {
    padding: 48px 0;
}

.img-list-title {
    text-align: center;
    margin-bottom: 24px;
}

.img-list-title h1 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
}

.img-list-item img {
    display: block;
    width: 100%;
    height: auto;
}

.img-list-item p {
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    text-align: center;
    padding: 8px;
}

/* news_list */
.news_list {
    padding: 48px 0;
}

.news_list-title {
    text-align: center;
    margin-bottom: 24px;
}

.news_list-title h1 {
    font-size: 32px;
    font-weight: normal;
    line-height: 40px;
    color: #333333;
}

.news_list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news_list-item {
    display: flex;
    align-items: center;
}

.news_list-item .ico {
    flex: none;
    width: 100px;
    padding: 12px 0;
    background-color: var(--main-color);
}

.news_list-item .ico p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
}

.news_list-item .ico p:nth-child(1) {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 2px;
}

.news_list-item .text {
    width: 100%;
    margin-left: 24px;
    padding: 12px 12px 12px 0;
}

.news_list-item .text h6 {
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
    margin-bottom: 8px;
}


.news_list-item:hover h6 {
    color: var(--main-color);
}

.news_list-item .text p {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}

@media (max-width: 992px) {
    .news_list-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}