﻿ 
        .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-top: 20px;
        }
        
        .category-section {
            margin-bottom: 50px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .category-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .category-header {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
        }
        
        .category-header h2 {
            font-size: 1.8rem;
            margin-left: 15px;
        }
        
        .category-icon {
            font-size: 1.8rem;
            background-color: rgba(255, 255, 255, 0.2);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .client-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            padding: 30px;
        }
        
        .client-item {
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .client-item:hover {
            background-color: #e8f4fc;
            transform: translateX(5px);
            border-left-color: #2ecc71;
        }
        
        .client-item i {
            color: #3498db;
            margin-right: 12px;
            font-size: 1.1rem;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .stat-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            min-width: 180px;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #7f8c8d;
            font-size: 1rem;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            color: #95a5a6;

            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #e0e6ef;
        }
        
        @media (max-width: 768px) {
            .client-list {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .category-header h2 {
                font-size: 1.5rem;
            }
            
            .stats {
                gap: 15px;
            }
            
            .stat-box {
                min-width: 140px;
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            .category-header {
                padding: 15px 20px;
            }
            
            .client-item {
                padding: 12px 15px;
            }
        }


.tabBox .tab-name a.active {
  color: #0c2f71!important;
  font-weight: 900;

}

.zhaopinzx-row {
	display: flex;
	flex-direction: column;
	gap: 25px;

}
/* 横向招聘卡片样式 */
.zhaopinzx-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
}
.zhaopinzx-card:hover {
	transform: translateX(8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
	border-color: #3498db;
}
.zhaopinzx-card.active {
	border-color: #23a1e7;
	box-shadow: 0 12px 25px rgba(46, 204, 113, 0.15);
}
.zhaopinzx-header {
	padding: 25px 30px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-bottom: 1px solid #eef2f7;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.zhaopinzx-title-section {
	display: flex;
	align-items: center;
	gap: 15px;
}
.zhaopinzx-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3498db, #23a1e7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
}
.zhaopinzx-title {
	font-size: 1.4rem;
	color: #2c3e50;
	font-weight: 600;
}
.zhaopinzx-basic-info {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.zhaopinzx-info-item {
	display: flex;
	align-items: center;
	color: #5a6c7d;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.8);
	padding: 8px 16px;
	border-radius: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.zhaopinzx-info-item i {
	margin-right: 8px;
	color: #3498db;
	width: 18px;
}
.zhaopinzx-location {
	display: flex;
	align-items: center;
	background-color: #e8f4fc;
	padding: 8px 20px;
	border-radius: 20px;
	color: #2980b9;
	font-weight: 500;
}
.zhaopinzx-location i {
	margin-right: 8px;
}
.zhaopinzx-expand-icon {
	color: #3498db;
	font-size: 1.5rem;
	transition: transform 0.3s;
	margin-left: 20px;
}
.zhaopinzx-card.active .zhaopinzx-expand-icon {
	transform: rotate(180deg);
	color: #2ecc71;
}
.zhaopinzx-details {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease;
	background-color: #f9fbfd;
}
.zhaopinzx-card.active .zhaopinzx-details {
	padding: 30px;
	max-height: 1000px;
}
.zhaopinzx-details-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.zhaopinzx-detail-section {
	margin-bottom: 0;
}
.zhaopinzx-detail-title {
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #d0d9e6;
	display: flex;
	align-items: center;
}
.zhaopinzx-detail-title i {
	margin-right: 10px;
	color: #2ecc71;
}
.zhaopinzx-detail-content {
	color: #5a6c7d;
	line-height: 1.7;
}
.zhaopinzx-detail-list {
	list-style-type: none;
}
.zhaopinzx-detail-list li {
	padding: 10px 0;
	padding-left: 28px;
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}
.zhaopinzx-detail-list li:last-child {
	border-bottom: none;
}
.zhaopinzx-detail-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #23a1e7;
	font-weight: bold;
	font-size: 1.1rem;
}
.zhaopinzx-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eef2f7;
}
.zhaopinzx-apply-btn {
	padding: 14px 40px;
	background: linear-gradient(to right, #3498db, #2ecc71);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 1px;
}
.zhaopinzx-apply-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.zhaopinzx-apply-btn i {
	margin-right: 8px;
}

@media  (max-width: 1399px) {
footer {
	text-align: center;
	margin-top: 0px;
	padding-top: 25px;
	color: #7f8c8d;
	font-size: 0.95rem;
	border-top: 1px solid #e0e6ef;
}
}
@media (min-width: 1400px) and (max-width: 1439px) {
footer {
	text-align: center;
	margin-top: 0px;
	padding-top: 25px;
	color: #7f8c8d;
	font-size: 0.95rem;
	border-top: 1px solid #e0e6ef;
}
}
@media (min-width: 1440px) and (max-width: 1919px)  {
footer {
	text-align: center;
	margin-top: 0px;
	padding-top: 25px;
	color: #7f8c8d;
	font-size: 0.95rem;
	border-top: 1px solid #e0e6ef;
}
}

@media (min-width: 1920px) {
footer {
	text-align: center;
	margin-top: 0px;
	padding-top: 25px;
	color: #7f8c8d;
	font-size: 0.95rem;
	border-top: 1px solid #e0e6ef;
}
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 15px;
	flex-wrap: wrap;
}
.footer-links a {
	color: #3498db;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-links a:hover {
	color: #2ecc71;
	text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
.zhaopinzx-details-content {
	grid-template-columns: 1fr;
	gap: 25px;
}
}

@media (max-width: 768px) {
.zhaopinzx-header {
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.zhaopinzx-basic-info {
	width: 100%;
	justify-content: space-between;
}
h1 {
	font-size: 2.2rem;
}
.zhaopinzx-title {
	font-size: 1.5rem;
}
.zhaopinzx-info-item {
	font-size: 0.9rem;
	padding: 6px 12px;
}
}

@media (max-width: 576px) {
.zhaopinzx-basic-info {
	flex-direction: column;
	gap: 10px;
}
.zhaopinzx-info-item {
	width: 100%;
	justify-content: center;
}
}
#list_slide .fx {
    flex-grow: 1;
    justify-content: space-between;
}
/* 招聘信息 */
.n_zhaopin #list_slide {
  position: relative;
  display: grid;
  gap: 1rem;
}

.n_zhaopin #list_slide dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 8.125rem;
  transition: 0.5s;
  padding: 0 4.5rem;
  background: #fff;
}

#list_slide .fx {
  flex-grow: 1;
  justify-content: space-between;
}

.n_zhaopin #list_slide dt h4 {
  display: block;
  width: 19rem;
  font-size: 1.375rem;
  line-height: 2.25rem;
  font-weight: bold;
  color: #1f1f1f;
  transition: padding 0.5s !important;
  -webkit-transition: padding 0.5s !important;
  -moz-transition: padding 0.5s !important;
  -ms-transition: padding 0.5s !important;
  -o-transition: padding 0.5s !important;
  flex-shrink: 0;
  white-space: nowrap;
}

.n_zhaopin #list_slide dt h3 {
  width: 100%;
  color: rgb(31 31 31 / 70%);
  font-size: 1.125rem;
  line-height: 2.25rem;
  overflow: hidden;
  display: grid;
  width: 80%;
  grid-template-columns: 1fr 1fr 1fr;
}

.n_zhaopin #list_slide dt h3 span {
  text-align: center;
  transition: 0.5s;
}

.n_zhaopin #list_slide dt .tgl {
  font-size: 0.875rem;
  line-height: 2.25rem;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3%;
  width: 5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background: #f0f3f5;
  transition: 0.5s;
}

.n_zhaopin #list_slide dl.on dt .tgl {
  background: #fff;
  color: #1c509c;
}

.n_zhaopin #list_slide dd {
  display: none;
  transition: 0s;
  line-height: 2rem;
  font-size: 0.9375rem;
  padding: 2.25rem 4.5rem 3.75rem;
  background: #1c509c;
  border-bottom: 0;
}

.n_zhaopin #list_slide dl.on dt {
  background: #1c509c;
}

.n_zhaopin #list_slide dl.on dt h4 {
  color: #fff;
}

.n_zhaopin #list_slide dl.on dt h3 span {
  color: rgb(215 231 255 / 70%);
}
.no_margin {
  margin-bottom: 0 !important
}
.md {
  width: 100%;
  height: 0;
  position: relative;
  top: -80px
}
@media (max-width:1200px) {
  .md {
    top: -65px
  }
}
strong {
  display: block
}
a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  outline: none;
  -moz-outline-style: none
}
div, li {
  box-sizing: border-box
}
.le {
  float: left
}
.ri {
  float: right
}
.swiper {
  position: relative;
  overflow: hidden
}
.swiper .swiper-slide .ani {
  display: none
}
.swiper .swiper-slide.swiper-slide-active .ani {
  display: block
}

input, button {
  border: none;
  background-color: transparent;
  box-sizing: border-box;
  outline: none
}
input[type="checkbox"] {
  vertical-align: -2px;
  margin-right: 4px
}
input::-webkit-input-placeholder {
  color: #aaaaa8
}
input:-moz-placeholder {
  color: #aaaaa8
}
input::-moz-placeholder {
  color: #aaaaa8
}
input:-ms-input-placeholder {
  color: #aaaaa8
}
textarea::-webkit-input-placeholder {
  color: #aaaaa8
}
textarea:-moz-placeholder {
  color: #aaaaa8
}
textarea::-moz-placeholder {
  color: #aaaaa8
}
textarea:-ms-input-placeholder {
  color: #aaaaa8
}

body::-webkit-scrollbar-button, html::-webkit-scrollbar-button {
  display: none
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  background-color: #eee
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: #eee
}
.clear-float::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both
}
.required::after {
	content: " *";
	color: #e74c3c;
}
.btn {
	background: linear-gradient(90deg, #244888 0%, #072d70 100%);
	color: white;
	border: none;
	padding: 14px 20px;
	font-size: 18px;
	border-radius: 6px;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s;
	font-weight: 600;
	text-align: center;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(75, 108, 183, 0.4);
}
.btn:active {
	transform: translateY(0);
}
.message {
	padding: 15px;
	border-radius: 6px;
	margin-top: 20px;
	text-align: center;
	display: none;
}
.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table
}
input, textarea {
  resize: none
}
input[type="submit"], input[type="reset"], input[type="button"], button {
  -webkit-appearance: none
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.f_direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column
}
.f_direction_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row
}
.f_direction_row_reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch
}
.dh {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap
}
.letterBig {
  text-transform: uppercase
}
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center
}
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%)
}
.xzx {
  transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg)
}
.xzy {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg)
}
.w1800 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px
}
.w1680 {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto
}
.w1400, .wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto
}
.w1350, .wrap {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto
}
.w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto
}
.font300 {
  font-size: 300px
}
@media (max-width:1600px) {
  .font300 {
    font-size: 280px
  }
}
@media (max-width:1560px) {
  .font300 {
    font-size: 260px
  }
}
@media (max-width:1470px) {
  .font300 {
    font-size: 240px
  }
}
@media (max-width:1366px) {
  .font300 {
    font-size: 220px
  }
}
@media (max-width:1200px) {
  .font300 {
    font-size: 200px
  }
}
@media (max-width:1024px) {
  .font300 {
    font-size: 180px
  }
}
@media (max-width:768px) {
  .font300 {
    font-size: 160px
  }
}
@media (max-width:480px) {
  .font300 {
    font-size: 140px
  }
}
@media (max-width:360px) {
  .font300 {
    font-size: 120px
  }
}
.font150 {
  font-size: 150px
}
@media (max-width:1600px) {
  .font150 {
    font-size: 140px
  }
}
@media (max-width:1560px) {
  .font150 {
    font-size: 130px
  }
}
@media (max-width:1470px) {
  .font150 {
    font-size: 120px
  }
}
@media (max-width:1366px) {
  .font150 {
    font-size: 110px
  }
}
@media (max-width:1200px) {
  .font150 {
    font-size: 100px
  }
}
@media (max-width:1024px) {
  .font150 {
    font-size: 90px
  }
}
@media (max-width:768px) {
  .font150 {
    font-size: 64px
  }
}
@media (max-width:480px) {
  .font150 {
    font-size: 50px
  }
}
@media (max-width:360px) {
  .font150 {
    font-size: 40px
  }
}
.font140 {
  font-size: 140px
}
@media (max-width:1600px) {
  .font140 {
    font-size: 130px
  }
}
@media (max-width:1560px) {
  .font140 {
    font-size: 120px
  }
}
@media (max-width:1470px) {
  .font140 {
    font-size: 110px
  }
}
@media (max-width:1366px) {
  .font140 {
    font-size: 100px
  }
}
@media (max-width:1200px) {
  .font140 {
    font-size: 90px
  }
}
@media (max-width:1024px) {
  .font140 {
    font-size: 80px
  }
}
@media (max-width:768px) {
  .font140 {
    font-size: 54px
  }
}
@media (max-width:480px) {
  .font140 {
    font-size: 40px
  }
}
@media (max-width:360px) {
  .font140 {
    font-size: 30px
  }
}
.font100 {
  font-size: 100px
}
@media (max-width:1600px) {
  .font100 {
    font-size: 90px
  }
}
@media (max-width:1560px) {
  .font100 {
    font-size: 80px
  }
}
@media (max-width:1470px) {
  .font100 {
    font-size: 70px
  }
}
@media (max-width:1366px) {
  .font100 {
    font-size: 60px
  }
}
@media (max-width:1200px) {
  .font100 {
    font-size: 50px
  }
}
@media (max-width:1024px) {
  .font100 {
    font-size: 40px
  }
}
@media (max-width:768px) {
  .font100 {
    font-size: 35px
  }
}
.font80 {
  font-size: 80px
}
@media (max-width:1600px) {
  .font80 {
    font-size: 62px
  }
}
@media (max-width:1470px) {
  .font80 {
    font-size: 52px
  }
}
@media (max-width:1024px) {
  .font80 {
    font-size: 42px
  }
}
@media (max-width:768px) {
  .font80 {
    font-size: 32px
  }
}
.font72 {
  font-size: 72px
}
@media (max-width:1600px) {
  .font72 {
    font-size: 62px
  }
}
@media (max-width:1470px) {
  .font72 {
    font-size: 52px
  }
}
@media (max-width:1024px) {
  .font72 {
    font-size: 42px
  }
}
@media (max-width:768px) {
  .font72 {
    font-size: 32px
  }
}
.font60 {
  font-size: 60px
}
@media (max-width:1600px) {
  .font60 {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .font60 {
    font-size: 38px
  }
}
@media (max-width:1024px) {
  .font60 {
    font-size: 36px
  }
}
@media (max-width:768px) {
  .font60 {
    font-size: 28px
  }
}
.font50 {
  font-size: 50px
}
@media (max-width:1600px) {
  .font50 {
    font-size: 46px
  }
}
@media (max-width:1470px) {
  .font50 {
    font-size: 39px
  }
}
@media (max-width:1024px) {
  .font50 {
    font-size: 33px
  }
}
@media (max-width:768px) {
  .font50 {
    font-size: 27px
  }
}
.font48 {
  font-size: 48px
}
@media (max-width:1600px) {
  .font48 {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .font48 {
    font-size: 39px
  }
}
@media (max-width:1024px) {
  .font48 {
    font-size: 33px
  }
}
@media (max-width:768px) {
  .font48 {
    font-size: 25px
  }
}
.font46 {
  font-size: 46px
}
@media (max-width:1600px) {
  .font46 {
    font-size: 43px
  }
}
@media (max-width:1470px) {
  .font46 {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .font46 {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .font46 {
    font-size: 27px
  }
}
.font44 {
  font-size: 44px
}
@media (max-width:1600px) {
  .font44 {
    font-size: 42px
  }
}
@media (max-width:1470px) {
  .font44 {
    font-size: 38px
  }
}
@media (max-width:1024px) {
  .font44 {
    font-size: 32px
  }
}
@media (max-width:768px) {
  .font44 {
    font-size: 26px
  }
}
.font42 {
  font-size: 42px
}
@media (max-width:1600px) {
  .font42 {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .font42 {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .font42 {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .font42 {
    font-size: 24px
  }
}
.font40 {
  font-size: 40px
}
@media (max-width:1600px) {
  .font40 {
    font-size: 38px
  }
}
@media (max-width:1470px) {
  .font40 {
    font-size: 33px
  }
}
@media (max-width:1024px) {
  .font40 {
    font-size: 29px
  }
}
@media (max-width:768px) {
  .font40 {
    font-size: 24px
  }
}
.font36 {
  font-size: 36px
}
@media (max-width:1600px) {
  .font36 {
    font-size: 32px
  }
}
@media (max-width:1470px) {
  .font36 {
    font-size: 28px
  }
}
@media (max-width:1024px) {
  .font36 {
    font-size: 24px
  }
}
@media (max-width:768px) {
  .font36 {
    font-size: 20px
  }
}
.font32 {
  font-size: 32px
}
@media (max-width:1600px) {
  .font32 {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .font32 {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .font32 {
    font-size: 22px
  }
}
@media (max-width:768px) {
  .font32 {
    font-size: 20px
  }
}
.font30 {
  font-size: 30px
}
@media (max-width:1600px) {
  .font30 {
    font-size: 26px
  }
}
@media (max-width:1470px) {
  .font30 {
    font-size: 22px
  }
}
@media (max-width:1024px) {
  .font30 {
    font-size: 20px
  }
}
@media (max-width:768px) {
  .font30 {
    font-size: 18px
  }
}
.font28 {
  font-size: 28px
}
@media (max-width:1600px) {
  .font28 {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .font28 {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .font28 {
    font-size: 18px
  }
}
.font26 {
  font-size: 26px
}
@media (max-width:1600px) {
  .font26 {
    font-size: 23px
  }
}
@media (max-width:1470px) {
  .font26 {
    font-size: 21px
  }
}
@media (max-width:1024px) {
  .font26 {
    font-size: 18px
  }
}
.font24 {
  font-size: 24px
}
@media (max-width:1600px) {
  .font24 {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .font24 {
    font-size: 16px
  }
}
.font22 {
  font-size: 22px
}
@media (max-width:1600px) {
  .font22 {
    font-size: 20px
  }
}
@media (max-width:1470px) {
  .font22 {
    font-size: 16px
  }
}
.font20 {
  font-size: 20px
}
@media (max-width:1600px) {
  .font20 {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .font20 {
    font-size: 16px
  }
}
.font18 {
  font-size: 18px
}
@media (max-width:1600px) {
  .font18 {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .font18 {
    font-size: 15px
  }
}
.font16 {
  font-size: 16px
}
@media (max-width:1600px) {
  .font16 {
    font-size: 14px
  }
}
.font15 {
  font-size: 15px
}
@media (max-width:1600px) {
  .font15 {
    font-size: 14px
  }
}
.font14 {
  font-size: 14px
}
.font12 {
  font-size: 12px
}
@media (max-width:1800px) {
  .w1680 {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1680px) {
  .w1560 {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1520px) {
  .w1400, .wrap {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1470px) {
  .w1350, .wrap {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1400px) {
  .w1280 {
    padding: 0 60px
  }
}
@media (max-width:1320px) {
  .w1200 {
    max-width: 100%;
    padding: 0 60px
  }
}
@media (max-width:1024px) {
  .w1800, .w1680, .w1560, .w1400, .w1350, .wrap, .w1440, .w1600, .w1280, .w1200 {
    padding: 0 30px
  }
}
@media (max-width:990px) {
  .w1800, .w1680, .w1560, .w1400, .w1350, .wrap, .w1440, .w1600, .w1280, .w1200 {
    padding: 0 20px
  }
  .pc {
    display: none !important
  }
  .wap, .mobile {
    display: block !important
  }
}
.content {
padding: 0 10rem;
  margin: 0 auto
}
@media (max-width:1600px) {
  .content {
    width: 1300px !important;
    margin: 0 auto
  }
}
@media (max-width:1440px) {
  .content {
    width:100% !important;
    margin: 0 auto
  }
}
@media (max-width:1200px) {
  .content {
    width: auto !important;
    padding: 0 40px;
    margin: 0 auto
  }
}
@media (max-width:768px) {
  .content {
    padding: 0 17.5px
  }
}
.pc {
  display: block
}
.wap, .mobile {
  display: none
}
.radius_16 {
  border-radius: 16px
}
@media (max-width:1600px) {
  .radius_16 {
    border-radius: 14px
  }
}
@media (max-width:1366px) {
  .radius_16 {
    border-radius: 12px
  }
}
@media (max-width:1024px) {
  .radius_16 {
    border-radius: 10px
  }
}
@media (max-width:768px) {
  .radius_16 {
    border-radius: 8px
  }
}
.pagination {
  text-align: center;
  position: relative;
  margin-top: 30px
}
.spage-number {
  display: inline-block
}
.spage-number button {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 34px;
  height: 46px;
  line-height: 46px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  outline: none;
  user-select: none;

  color: #000000;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all .2s;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s
}


.spage-number button.active {
  color: #fff;
  background-color: #008bd5;
  z-index: 3
}
.spage-number button.active:hover {
  z-index: 3
}

.spage-number button:hover {
  color: #fff;
  background-color: #008bd5
}
.spage-number button.button-disabled {
  cursor: not-allowed
}
.spage-number .spage-after, .spage-before {
  width: 50px
}
.spage-skip {
  display: inline-block;
  display: none;
  margin-left: 20px;
  line-height: 50px;
  color: #262424;
  font-size: 14px
}
.spage-skip input {
  box-sizing: border-box;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  text-align: center;
  vertical-align: top;
  outline: none;
  transition: all .2s
}
.spage-skip button {
  display: inline-block;
  width: 100px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  vertical-align: top;
  color: #262424;
  margin-left: 24px;
  cursor: pointer;
  transition: all .2s;
  outline: none;
  user-select: none
}
.spage-skip button:hover {
  color: #fff;
  background-color: #008bd5
}

.mySelect {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 60px;
  z-index: 1
}
.mySelect .show {
  z-index: 1;
  position: relative;
  padding-left: 55px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  font-size: 14px;
  color: #aaaaa8;
  background-color: #f4f4f4;
  transition-duration: .4s
}
.mySelect .show.on, .mySelect .show:hover {
  background-color: #ededed
}

.mySelect .show.on:before {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg)
}
.mySelect .drapList {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: auto;
  width: 100%;
  background-color: #f2f2f2
}
.mySelect .drapList ul {
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px
}
.mySelect .drapList li {
  padding: 0 40px;
  line-height: 40px;
  font-size: 14px;
  color: #aaaaa8;
  cursor: pointer
}
.mySelect .drapList li:hover {
  background-color: #ededed;
  color: #0053ca
}
.mySelect .drapList::-webkit-scrollbar {
  display: none
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeInUpsb {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes fadeInUpsb {
  0% {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}
@-webkit-keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
}
@keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
}
@keyframes h_schedule {
  0% {
    width: 0
  }
  100% {
    width: 100%
  }
}
@-webkit-keyframes h_schedule {
  0% {
    width: 0
  }
  100% {
    width: 100%
  }
}
@keyframes upico {
  0% {
    top: 0;
    opacity: 1
  }
  35% {
    top: -50%;
    opacity: 0
  }
  65% {
    top: 50%;
    opacity: 0
  }
  100% {
    top: 0;
    opacity: 1
  }
}
@-webkit-keyframes upico {
  0% {
    top: 0;
    opacity: 1
  }
  35% {
    top: -50%;
    opacity: 0
  }
  65% {
    top: 50%;
    opacity: 0
  }
  100% {
    top: 0;
    opacity: 1
  }
}
@keyframes h-clip {
  0% {
    -webkit-clip-path: circle(0 at 100% 100%);
    clip-path: circle(0 at 100% 100%)
  }
  100% {
    -webkit-clip-path: circle(100% at 100% 75%);
    clip-path: circle(100% at 100% 75%)
  }
}
@-webkit-keyframes h-clip {
  0% {
    -webkit-clip-path: circle(0 at 100% 100%);
    clip-path: circle(0 at 100% 100%)
  }
  100% {
    -webkit-clip-path: circle(100% at 100% 75%);
    clip-path: circle(100% at 100% 75%)
  }
}
@keyframes h-color-w {
  0% {
    color: #000
  }
  100% {
    color: #fff
  }
}
@-webkit-keyframes h-color-w {
  0% {
    color: #000
  }
  100% {
    color: #fff
  }
}
@keyframes h-color-w2 {
  0% {
    color: #000;
    color: rgba(0, 0, 0, 0.6)
  }
  100% {
    color: #fff
  }
}
@-webkit-keyframes h-color-w2 {
  0% {
    color: #000;
    color: rgba(0, 0, 0, 0.6)
  }
  100% {
    color: #fff
  }
}
@-webkit-keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
}
@keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2)
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
  }
}
@-webkit-keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
  20% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
  30% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 0
  }
  31% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    opacity: 0
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    opacity: 1
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
}
@keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
  20% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
  30% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 0
  }
  31% {
    transform: scale(1, .01);
    -webkit-transform: scale(1, .01);
    -ms-transform: scale(1, .01);
    -moz-transform: scale(1, .01);
    -o-transform: scale(1, .01);
    transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    opacity: 0
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    opacity: 1
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    opacity: 1
  }
}
@keyframes run {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(-360deg)
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg)
  }
}
@keyframes tran_boost {
  0% {
    transform: scale(0);
    opacity: 1
  }
  100% {
    transform: scale(1);
    opacity: .3
  }
}
.wow {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s
}
.animated {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}
.fadeInUpsb {
  -webkit-animation-name: fadeInUpsb;
  animation-name: fadeInUpsb
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}
.icon-video {
  -webkit-animation-name: icon-video;
  animation-name: icon-video
}
.h_schedule {
  -webkit-animation-name: h_schedule;
  animation-name: h_schedule
}
.upico {
  -webkit-animation-name: upico;
  animation-name: upico
}
.h-clip {
  -webkit-animation-name: h-clip;
  animation-name: h-clip
}
.h-color-w {
  -webkit-animation-name: h-color-w;
  animation-name: h-color-w
}
.h-color-w2 {
  -webkit-animation-name: h-color-w2;
  animation-name: h-color-w2
}
.icon_video {
  -webkit-animation-name: icon_video;
  animation-name: icon_video
}
.h-line {
  -webkit-animation-name: h-line;
  animation-name: h-line
}
.idx_title .title {
  font-size: 48px;
  color: #000;
  line-height: 1;

}
@media (max-width:1600px) {
  .idx_title .title {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .idx_title .title {
    font-size: 39px
  }
}
@media (max-width:1024px) {
  .idx_title .title {
    font-size: 33px
  }
}
@media (max-width:768px) {
  .idx_title .title {
    font-size: 25px
  }
}
.idx_title .subtitle {
  font-size: 24px;
  color: #000;
  margin-top: min(3.38541667vw, 65px);
  margin-bottom: min(2.08333333vw, 40px)
}
@media (max-width:1600px) {
  .idx_title .subtitle {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .idx_title .subtitle {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .idx_title .subtitle {
    margin-top: 32.5px
  }
}
@media (max-width:1024px) {
  .idx_title .subtitle {
    margin-bottom: 20px
  }
}
.idx_title .content {
  font-size: 16px;
  line-height: 1.875;
  color: #666666
}
@media (max-width:1600px) {
  .idx_title .content {
    font-size: 14px
  }
}
@media (max-width:768px) {
  .idx_title .subtitle {
    margin-top: 20px !important;
    margin-bottom: 10px !important
  }
}
.pushButton {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  position: relative
}
@media (max-width:1600px) {
  .pushButton {
    font-size: 14px
  }
}
.pushButton span {
  position: relative;
  z-index: 1
}
.pushButton i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.pushButton::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .pushButton {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .pushButton {
    width: 125px !important;
    height: 35px !important
  }
  .pushButton i {
    display: none
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  margin: auto
}
#header .header-pc {
  position: relative;
  background-color: #fff;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s
}
#header .header-pc .content {
  margin: auto;
  height: 100px;
  text-align: center;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s
}
#header .header-pc .content .logo {
  float: left;
  margin-top: 24px;
  width: 278px;
  background: url(../image/logo.png) no-repeat center;
  background-size: cover
}
#header .header-pc .content .logo img {
  opacity: 0
}
#header .header-pc .content .head-right {
  float: right;
  display: inline-block;
  line-height: 100px;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s
}
#header .header-pc .content .head-right .nav {
  position: relative;
  float: left
}
#header .header-pc .content .head-right .nav dl {
  float: left;
  position: relative;
  z-index: 10
}
#header .header-pc .content .head-right .nav dl:last-child {
  margin-right: 0
}
#header .header-pc .content .head-right .nav dl:hover {
  z-index: 20
}
#header .header-pc .content .head-right .nav dl.on dt a {
  color: white
}
#header .header-pc .content .head-right .nav dl.on dt a::before {
  height: 100%
}
#header .header-pc .content .head-right .nav dt a {
  font-size: 18px;
  color: #333333;
  position: relative;
  padding: 0 min(1.35416667vw, 26px) 0 min(1.35416667vw, 26px)
}
@media (max-width:1600px) {
  #header .header-pc .content .head-right .nav dt a {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  #header .header-pc .content .head-right .nav dt a {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  #header .header-pc .content .head-right .nav dt a {
    padding: 0 13px 0 13px
  }
}
#header .header-pc .content .head-right .nav dt a::before {
  content: '';
  width: 100%;
  height: 0;
  background-color: #0c2f71;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s
}
#header .header-pc .content .head-right .nav dt a.on {
  color: white
}
#header .header-pc .content .head-right .nav dt a.on::before {
  height: 100%
}
#header .header-pc .content .head-right .nav dt a:hover {
  color: white
}
#header .header-pc .content .head-right .nav dt a:hover::before {
  height: 100%
}
#header .header-pc .content .head-right .nav dd {
  display: none;
  width: 120px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 100px;
  margin-left: -60px;
  font-size: 0
}
#header .header-pc .content .head-right .nav dd .ovs {
  height: 100%;
  padding: 20px 0 10px
}
#header .header-pc .content .head-right .nav dd .ovs a {
  display: block;
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 15px;
  text-align: center;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s
}
#header .header-pc .content .head-right .nav dd .ovs a:hover {
  color: #0c2f71
}
#header .header-pc .content .head-right .nav dd.nav-open {
  width: 100%;
  max-width: 1920px;
  position: fixed;
  left: 0;
  margin-left: 0
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom {
  width: 50.652%;
  min-width: 970px;
  margin: auto
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom .row {
  margin-left: -15px;
  margin-right: -15px
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom .ovs {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom .ovs h3 {
  font-weight: bold;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 6px;
  margin-bottom: 20px
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom .ovs h3 a {
  margin-bottom: 6px
}
#header .header-pc .content .head-right .nav dd.nav-open .container-custom .ovs a {
  text-align: left
}
#header .header-pc .content .nav-but-wrap {
  margin: 31px 0 0 30px;
  position: relative;
  display: inline-block;
  float: right;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out
}
#header .header-pc .content .nav-but-wrap .menu-icon {
  height: 18px;
  width: 24px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block
}
#header .header-pc .content .nav-but-wrap .menu-icon .menu-icon-line {
  height: 2px;
  width: 24px;
  display: block;
  background-color: #fff;
  margin-bottom: 6px;
  cursor: pointer;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease
}
#header .header-pc .content .nav-but-wrap .menu-icon:hover .menu-icon-line {
  background-color: #0c2f71
}
#header .header-pc .content .head-ri {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: min(6.35416667vw, 122px)
}
@media (max-width:1024px) {
  #header .header-pc .content .head-ri {
    margin-left: 61px
  }
}
#header .header-pc .content .head-ri .heed-photo {
  font-size: 20px;
  color: #0c2f71;
  line-height: 1.4;
  padding-left: 36px;
  background: url(../image/photo-ico.svg) no-repeat left center;
  background-size: 21px 21px
}
@media (max-width:1600px) {
  #header .header-pc .content .head-ri .heed-photo {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  #header .header-pc .content .head-ri .heed-photo {
    font-size: 15px
  }
}
#header .header-pc .content .head-ri .header-search-button {
  width: 22px;
  height: 100px;
  background: url(../image/-search-ico.png) no-repeat center;
  background-size: 22px 22px;
  cursor: pointer;
  position: relative;
  z-index: 999;
  margin-left: min(2.34375vw, 45px)
}
@media (max-width:1024px) {
  #header .header-pc .content .head-ri .header-search-button {
    margin-left: 22.5px
  }
}
#header .header-pc .content .head-ri .header-search-button::before {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #b1b1b1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-left: min(-1.04166667vw, -20px)
}
@media (max-width:1024px) {
  #header .header-pc .content .head-ri .header-search-button::before {
    margin-left: -10px
  }
}
@media (max-width:1600px) {
  #header .header-pc .content {
    height: 80px
  }
  #header .header-pc .content .logo {
    margin-top: 20px;
    width: 210px
  }
  #header .header-pc .content .head-right {
    line-height: 80px
  }
  #header .header-pc .content .head-right .nav dd {
    top: 80px
  }
  #header .header-pc .content .head-ri .header-search-button {
    height: 80px
  }
}
@media (max-width:1440px) {
  #header .header-pc .content .head-right .nav dt a {
    padding: 0 8px
  }
}
#header .mask-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: -1;
  visibility: hidden
}
#header .mask-bg.show {
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 1;
  background-image: url(../image/mask.png);
  visibility: visible
}
#header .tool-bar {
  position: fixed;
  right: -100px;
  top: 50%;
  z-index: 999;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%)
}
#header .tool-bar a {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top: none;
  display: block;
  padding-top: 13px;
  cursor: pointer;
  position: relative;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
#header .tool-bar a i.iconfont {
  display: block;
  width: 32px;
  height: 31px;
  margin: 0 auto;
  margin-bottom: 3px;
  background: no-repeat center;
  background-size: 32px 31px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
#header .tool-bar a i.iconfont.icon-shangqiao {
  background-image: url(../image/icon-shangqiao.svg)
}
#header .tool-bar a i.iconfont.icon-phone {
  background-image: url(../image/icon-phone.svg)
}
#header .tool-bar a i.iconfont.icon-weChat {
  background-image: url(../image/icon-weChat.svg)
}
#header .tool-bar a i.iconfont.icon-quotation {
  background-image: url(../image/icon-quotation.svg)
}
#header .tool-bar a i.iconfont.icon-programme {
  background-image: url(../image/icon-programme.svg)
}
#header .tool-bar a i.iconfont.icon-top {
  background-image: url(../image/-icon-top.svg)
}
#header .tool-bar a span {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #333333;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
#header .tool-bar a .wrap-box {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  width: 235px;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}
#header .tool-bar a .wrap-box .text {
  height: 100%;
  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
}
#header .tool-bar a .wrap-box .h5 {
  font-size: 28px;
  color: #0c2f71;
  text-align: center
}
@media (max-width:1600px) {
  #header .tool-bar a .wrap-box .h5 {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  #header .tool-bar a .wrap-box .h5 {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  #header .tool-bar a .wrap-box .h5 {
    font-size: 18px
  }
}
#header .tool-bar a .wrap-box .p {
  font-size: 14px;
  color: #333333;
  text-align: center
}
#header .tool-bar a:first-child {
  border-top: 1px solid #d9d9d9
}
#header .tool-bar a:last-child {
  border-bottom: 0
}
#header .tool-bar a.totop {
  visibility: hidden;
  opacity: 0;
  background-color: #0c2f71;
  border-color: #0c2f71;
  margin-top: 12px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s
}
#header .tool-bar a.totop span {
  color: white
}
#header .tool-bar a.weChat .wrap-box {
  height: 160px
}
#header .tool-bar a.weChat .wrap-box img {
  width: 117px
}
#header .tool-bar a:hover {
  background-color: #0c2f71;
  border-color: #0c2f71
}
#header .tool-bar a:hover i.iconfont.icon-shangqiao {
  background-image: url(../image/-icon-shangqiao.svg)
}
#header .tool-bar a:hover i.iconfont.icon-phone {
  background-image: url(../image/-icon-phone.svg)
}
#header .tool-bar a:hover i.iconfont.icon-weChat {
  background-image: url(../image/-icon-weChat.svg)
}
#header .tool-bar a:hover i.iconfont.icon-quotation {
  background-image: url(../image/-icon-quotation.svg)
}
#header .tool-bar a:hover i.iconfont.icon-programme {
  background-image: url(../image/-icon-programme.svg)
}
#header .tool-bar a:hover span {
  color: white
}
#header .tool-bar a:hover .wrap-box {
  display: block
}
#header .tool-bar.on {
  right: 6px
}
#header .tool-bar.top .totop {
  visibility: inherit;
  opacity: 1
}
@media (max-width:1200px) {
  #header .tool-bar a.phone, #header .tool-bar a.weChat, #header .tool-bar a.quotation, #header .tool-bar a.programme {
    display: none
  }
}
#header .header-mobile {
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1)
}
#header .header-mobile .header {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  height: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}
#header .header-mobile .header .logo {
  width: 209px;
  height: 36px;
  margin: 15px 0 0 40px;
  float: left;
  background: url(../image/logo.png) no-repeat center;
  background-size: cover !important
}
#header .header-mobile .header .ham {
  float: right;
  position: relative;
  width: 65px;
  height: 65px
}
#header .header-mobile .header .ham span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 1px;
  margin-left: -14px;
  width: 28px;
  height: 2px;
  background-color: #000;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
#header .header-mobile .header .ham span:first-child {
  transform: translateY(-8px)
}
#header .header-mobile .header .ham span:last-child {
  transform: translateY(8px)
}
#header .header-mobile .header .ham.on span:first-child {
  transform: rotate(135deg)
}
#header .header-mobile .header .ham.on span:nth-child(2) {
  transform: scale(0)
}
#header .header-mobile .header .ham.on span:last-child {
  transform: rotate(-135deg)
}
#header .header-mobile .m-login-menu {
  width: 100vw;
  display: flex;
  overflow: hidden;
  opacity: 0;
  flex-direction: column;
  position: fixed;
  top: 65px;
  left: 0;
  justify-content: flex-start;
  background: #fff;
  border-top: 1px solid rgba(0, 139, 213, 0.2);
  transition: all .1s ease-in-out;
  max-height: calc(100% - 1.45rem);
  overflow: auto;
  z-index: -1;
  padding-bottom: .2rem;
  box-sizing: border-box;
  display: none
}
#header .header-mobile .m-login-menu .menu-item {
  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;
  line-height: 100px;
  font-size: 14px;
  color: #888888
}
#header .header-mobile .m-login-menu .menu-item a {
  flex: 1;
  text-align: center
}
#header .header-mobile .m-login-menu.visible {
  opacity: 1;
  z-index: 99;
  display: block
}
#header .header-mobile .navBox {
  width: 100%;
  height: calc(100vh - 65px);
  background: #f7f7f7;
  display: none;
  overflow: hidden
}
#header .header-mobile .navBox .menu_info {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 30px
}
#header .header-mobile .navBox .nav-ri {
  width: 100%;
  height: auto;
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  padding: 20px 40px 30px
}
#header .header-mobile .navBox .menu_form {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 40px;
  overflow: hidden
}
#header .header-mobile .navBox .menu_form .center {
  width: 100%;
  height: 50px;
  background: #fff;
  overflow: hidden
}
#header .header-mobile .navBox .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden
}
#header .header-mobile .navBox .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  color: #282f36;
  border: 0
}
#header .header-mobile .navBox .menu_form .center form button {
  width: 70px;
  height: 100%;
  background: url(../image/search-ico.png) no-repeat center #0c2f71
}
#header .header-mobile .navBox .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0 40px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden
}
#header .header-mobile .navBox .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden
}
#header .header-mobile .navBox .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  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;
  background: #fff;
  border-radius: 50px;
  font-size: 12px;
  color: #282f36
}
#header .header-mobile .navBox .menu_lang .one a.active {
  background: #0c2f71;
  color: #fff
}
#header .header-mobile .navBox a {
  display: block
}
#header .header-mobile .navBox li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03)
}
#header .header-mobile .navBox li.on dt .ico {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg)
}
#header .header-mobile .navBox li a.on {
  color: #0c2f71
}
#header .header-mobile .navBox dt {
  position: relative;
  font-size: 16px;
  color: #282f36
}
#header .header-mobile .navBox dt .ico {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: url(../image/ico-nav.png) no-repeat center;
  background-size: 8px 14px;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
#header .header-mobile .navBox dd {
  display: none;
  padding-top: 10px;
  margin-top: 10px;
  line-height: 34px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #0c2f71
}
#header .header-mobile .navBox dd a {
  padding: 0 0 0 20px;
  position: relative
}
#header .header-mobile .navBox dd a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  background: url(../image/ico-nav.png) no-repeat center;
  background-size: 6px 10px
}
#header .header-mobile .navBox .ul_box .ul_nei_nav {
  display: none
}
@media (max-width:768px) {
  #header .header-mobile .header .logo {
    margin: 15px 0 0 17.5px
  }
  #header .header-mobile .navBox .nav-ri {
    padding: 17.5px
  }
  #header .header-mobile .navBox .menu_form {
    padding: 0 17.5px
  }
  #header .header-mobile .navBox .menu_lang {
    padding: 0 17.5px
  }
}
#header.bottom {
  top: -80px
}
#header.top {
  top: 0
}
@media (max-width:1200px) {
  #header .header-pc .content {
    padding: 0 24px
  }
  #header .header-pc .content .head-ri {
    display: none
  }
}
@media (max-width:768px) {
  #header {
    top: 0 !important
  }
  #header .header-pc {
    display: none
  }
  #header .header-mobile {
    display: block
  }
}
.skrollr #header .header-pc .content .head-ri .header-search-button {
  background: url(../image/icon_close.png) no-repeat center !important;
  background-size: 19px 19px
}
#footer {
  background-color: #222935;
  position: relative;
  z-index: 99
}
#footer .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: min(3.64583333vw, 70px) 0 min(3.64583333vw, 70px);
  padding-left: 173px;
  padding-right: 117px;
  position: relative
}
@media (max-width:1024px) {
  #footer .up {
    padding: 35px 0 35px 0
  }
}
#footer .up .footer-ico {
  width: 173px;
  height: 193px;
  background-color: #0c2f71;
  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;
  position: absolute;
  top: -10px;
  left: 0
}
#footer .up .footer-ico::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #860304 transparent;
  position: absolute;
  top: 0;
  left: -9px;
  z-index: -1
}
#footer .up .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-left: min(6.77083333vw, 130px);
  width: 48.5%;
  position: relative
}
@media (max-width:1024px) {
  #footer .up .foot-nav {
    margin-left: 65px
  }
}
#footer .up .foot-nav .dl {
  display: inline-block
}
#footer .up .foot-nav .dl .dt {
  font-size: 18px;
  color: #fff;
  margin-bottom: min(.83333333vw, 16px)
}
@media (max-width:1600px) {
  #footer .up .foot-nav .dl .dt {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  #footer .up .foot-nav .dl .dt {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  #footer .up .foot-nav .dl .dt {
    margin-bottom: 8px
  }
}
#footer .up .foot-nav .dl .dd {
  font-size: 15px;
  color: #646874;
  line-height: 40px;
  display: block;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
@media (max-width:1600px) {
  #footer .up .foot-nav .dl .dd {
    font-size: 14px
  }
}
#footer .up .foot-nav .dl .dd:hover {
  color: white
}
#footer .up .text {
  width: 34.2%;
  padding-right: 20px
}
#footer .up .text h3 {
  font-size: 18px;
  color: white;
  margin-bottom: min(1.875vw, 36px)
}
@media (max-width:1600px) {
  #footer .up .text h3 {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  #footer .up .text h3 {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  #footer .up .text h3 {
    margin-bottom: 18px
  }
}
#footer .up .text h5 {
  font-size: 32px;
  color: white;
  line-height: 1;
  margin-bottom: min(.52083333vw, 10px)
}
@media (max-width:1600px) {
  #footer .up .text h5 {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  #footer .up .text h5 {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  #footer .up .text h5 {
    font-size: 22px
  }
}
@media (max-width:768px) {
  #footer .up .text h5 {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  #footer .up .text h5 {
    margin-bottom: 5px
  }
}
#footer .up .text p {
  font-size: 15px;
  color: #646874;
  line-height: 27px;
  text-align: left
}
@media (max-width:1600px) {
  #footer .up .text p {
    font-size: 14px
  }
}
#footer .up .text p a {
  color: #fff;
  color: rgba(255, 255, 255, 0.4);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
#footer .up .text p a:hover {
  color: #fff
}
#footer .up .text .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;

  display: flex;
  margin-top: min(1.66666667vw, 32px)
}
@media (max-width:1024px) {
  #footer .up .text .list {
    margin-top: 16px
  }
}
#footer .up .text .list a {
  width: 40px;
  height: 40px;
  background-color: #303743;
  border-radius: 50%;
  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;
  margin-right: min(.78125vw, 15px);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
@media (max-width:1024px) {
  #footer .up .text .list a {
    margin-right: 7.5px
  }
}
#footer .up .text .list a img {
  height: 21px
}
#footer .up .text .list a:hover {
  background-color: #0c2f71
}
#footer .up .follow-wechat {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: min(3.64583333vw, 70px);
  width: 117px
}
@media (max-width:1024px) {
  #footer .up .follow-wechat {
    margin-top: 35px
  }
}
#footer .up .follow-wechat img {
  margin-bottom: min(1.14583333vw, 22px)
}
@media (max-width:1024px) {
  #footer .up .follow-wechat img {
    margin-bottom: 11px
  }
}
#footer .up .follow-wechat p {
  color: #646874;
  text-align: center
}
#footer .wrap-box {
  overflow: hidden
}
#footer .wrap-box .link-title {
  font-size: 16px;
  color: white;
  line-height: 1.4
}
@media (max-width:1600px) {
  #footer .wrap-box .link-title {
    font-size: 14px
  }
}
#footer .wrap-box .link {
  overflow: hidden;
  margin: min(.52083333vw, 10px) 0 min(1.35416667vw, 26px)
}
@media (max-width:1024px) {
  #footer .wrap-box .link {
    margin: 5px 0 13px
  }
}
#footer .wrap-box .link a {
  float: left;
  font-size: 15px;
  color: #646874;
  line-height: 27px;
  margin-right: min(1.14583333vw, 22px);
  position: relative;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
@media (max-width:1600px) {
  #footer .wrap-box .link a {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  #footer .wrap-box .link a {
    margin-right: 11px
  }
}
#footer .wrap-box .link a:hover {
  color: white
}
#footer .wrap-box .down {
  border-top: 1px solid #3f444b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: min(1.61458333vw, 31px) 0 min(1.82291667vw, 35px)
}
@media (max-width:1024px) {
  #footer .wrap-box .down {
    padding: 15.5px 0 17.5px 0
  }
}
#footer .wrap-box .down .text {
  font-size: 15px;
  color: #646874;
  line-height: 1.4;
  padding-right: 20px
}
@media (max-width:1600px) {
  #footer .wrap-box .down .text {
    font-size: 14px
  }
}
#footer .wrap-box .down .text a {
  display: inline-block;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s
}
#footer .wrap-box .down .text a:hover {
  color: white
}
#footer .wrap-box .socials_wrap {
  display: inline-block;
  vertical-align: top
}
#footer .wrap-box .socials_wrap a {
  float: left;
  position: relative;
  margin-left: 10px
}
#footer .wrap-box .socials_wrap a .social_icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background: no-repeat center;
  background-size: cover;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s
}
#footer .wrap-box .socials_wrap a .social_icon.social_icon_wechat {
  background-image: url(../image/icon_wechat.png)
}
#footer .wrap-box .socials_wrap a .social_icon.social_icon_blog {
  background-image: url(../image/icon_blog.png)
}
#footer .wrap-box .socials_wrap a .social_icon.social_icon_tiktok {
  background-image: url(../image/icon_tiktok.png)
}
#footer .wrap-box .socials_wrap a .social_icon .weChat_img {
  position: absolute;
  top: 50px;
  left: -37.5px;
  width: 107px;
  height: 107px;
  background-color: #fff;
  z-index: 99;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: alpha(opacity=0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  will-change: opacity;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transition: transform .4s, opacity .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s, opacity .4s, -webkit-transform .4s;
  -moz-transition: transform .4s, opacity .4s, -webkit-transform .4s;
  -ms-transition: transform .4s, opacity .4s, -webkit-transform .4s;
  -o-transition: transform .4s, opacity .4s, -webkit-transform .4s
}
#footer .wrap-box .socials_wrap a .social_icon .weChat_img img {
  width: 100%;
  height: 100%
}
#footer .wrap-box .socials_wrap a .social_icon .weChat_img:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #0c2f71 transparent;
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: auto
}
#footer .wrap-box .socials_wrap a .social_icon .weChat_img::after {
  content: '';
  width: 100%;
  width: -moz-calc(94%);
  width: -webkit-calc(94%);
  width: calc(100% - 6px);
  height: 100%;
  height: -moz-calc(94%);
  height: -webkit-calc(94%);
  height: calc(100% - 6px);
  border: 3px solid #0c2f71;
  position: absolute;
  top: 0;
  left: 0
}
#footer .wrap-box .socials_wrap a .social_icon.social_icon_tiktok .weChat_img {
  left: auto;
  right: 0
}
#footer .wrap-box .socials_wrap a .social_icon.social_icon_tiktok .weChat_img:before {
  left: auto;
  right: 12px
}
#footer .wrap-box .socials_wrap a:hover .social_icon.social_icon_wechat {
  background-image: url(../image/-icon_wechat.png)
}
#footer .wrap-box .socials_wrap a:hover .social_icon.social_icon_blog {
  background-image: url(../image/-icon_blog.png)
}
#footer .wrap-box .socials_wrap a:hover .social_icon.social_icon_tiktok {
  background-image: url(../image/-icon_tiktok.png)
}
#footer .wrap-box .socials_wrap a:hover .weChat_img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-filter: alpha(opacity=100)
}
@media (max-width:1200px) {
  #footer .up, #footer .link-title, #footer .link {
    display: none
  }
  #footer .wrap-box .down {
    display: block;
    text-align: center
  }
}
.float-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(28, 35, 47, 0.7);
  -webkit-transition: all .3s;
  transition: all .3s
}
.float-box .content {
  position: relative
}
.float-box .close {
  position: absolute;
  top: 5px;
  right: 0;
  margin-right: min(-3.64583333vw, -70px);
  width: 15px;
  cursor: pointer;
  z-index: 9
}
@media (max-width:1024px) {
  .float-box .close {
    margin-right: -35px
  }
}
.float-box .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  overflow: visible !important;
  height: 98px;
  padding-left: 156px
}
.float-box .wrap-box .ico {
  position: absolute;
  top: -30px;
  left: -14px
}
.float-box .wrap-box .text-box-le .name {
  font-size: 24px;
  color: white;
  font-weight: bold;
  margin-right: min(1.04166667vw, 20px)
}
@media (max-width:1600px) {
  .float-box .wrap-box .text-box-le .name {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .float-box .wrap-box .text-box-le .name {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .text-box-le .name {
    margin-right: 10px
  }
}
.float-box .wrap-box .text-box-le .name em {
  color: #0c2f71
}
.float-box .wrap-box .text-box-le .text {
  font-size: 14px;
  color: white;
  opacity: .6;
  margin-top: min(.3125vw, 6px)
}
@media (max-width:1024px) {
  .float-box .wrap-box .text-box-le .text {
    margin-top: 3px
  }
}
.float-box .wrap-box .text-box-ri {
  padding-left: 62px;
  background: url(../image/float-call-ico.png) no-repeat left center;
  background-size: 48px 48px;
  min-height: 48px;
  white-space: nowrap
}
.float-box .wrap-box .text-box-ri .name {
  font-size: 14px;
  color: white;
  opacity: .6
}
.float-box .wrap-box .text-box-ri .name em {
  color: #0c2f71
}
.float-box .wrap-box .text-box-ri .text {
  font-size: 24px;
  color: white;
  line-height: 1;
  font-weight: bold;
  margin-top: min(.41666667vw, 8px)
}
@media (max-width:1600px) {
  .float-box .wrap-box .text-box-ri .text {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .float-box .wrap-box .text-box-ri .text {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .text-box-ri .text {
    margin-top: 4px
  }
}
.float-box .wrap-box .from {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.float-box .wrap-box .from .form-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  height: 48px;
  color: white;
  font-size: 15px;
  padding: 0 min(.9375vw, 18px) 0 min(.9375vw, 18px);
  margin-right: min(1.14583333vw, 22px)
}
@media (max-width:1600px) {
  .float-box .wrap-box .from .form-control {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .from .form-control {
    padding: 0 9px 0 9px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .from .form-control {
    margin-right: 11px
  }
}
.float-box .wrap-box .from .form-control::-webkit-input-placeholder {
  color: white
}
.float-box .wrap-box .from .form-control:-moz-placeholder {
  color: white
}
.float-box .wrap-box .from .form-control::-moz-placeholder {
  color: white
}
.float-box .wrap-box .from .form-control:-ms-input-placeholder {
  color: white
}
.float-box .wrap-box .from .from-btn {
  height: 48px;
  background-color: #0c2f71;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0 min(1.25vw, 24px) 0 min(1.25vw, 24px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-right: min(1.04166667vw, 20px)
}
@media (max-width:1600px) {
  .float-box .wrap-box .from .from-btn {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .float-box .wrap-box .from .from-btn {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .from .from-btn {
    padding: 0 12px 0 12px
  }
}
@media (max-width:1024px) {
  .float-box .wrap-box .from .from-btn {
    margin-right: 10px
  }
}
.float-box .wrap-box .from .from-btn::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.float-box .wrap-box .from .from-btn em {
  position: relative;
  z-index: 1
}
.float-box .wrap-box .from .from-btn:hover::before {
  width: 100%;
  left: 0px
}
.float-box.on {
  bottom: -140px
}
@media (max-width:1600px) {}
@media (max-width:1200px) {
  .float-box {
    display: none
  }
}
.pop {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999
}
.pop .bg {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8
}
.pop .pop-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 40px;
  transform: translate(-50%, -50%)
}
.pop .cont {
  padding: 30px;
  background-color: #fff;
  max-height: 80vh;
  overflow: auto
}
.pop .cont p {
  margin-bottom: 24px;
  color: #777777;
  opacity: .8
}
.pop .cont p:last-child {
  margin-bottom: 0
}
.pop .close {
  position: absolute;
  right: 40px;
  top: -40px;
  z-index: 6;
  width: 20px;
  cursor: pointer
}
@media (max-width:1280px) {
  .pop .pop-wrap {
    width: 100%
  }
}
@media (max-width:768px) {
  .pop .close {
    right: 17.5px
  }
  .pop .pop-wrap {
    padding: 0 17.5px !important
  }
}
.pop.pop-video .cont {
  padding: 0;
  max-height: initial;
  background-color: transparent
}
.pop.pop-video .cont video {
  width: 100%;
  height: 520px;
  object-fit: cover
}
@media (max-width:1280px) {
  .pop.pop-video .cont video {
    width: 100%;
    height: auto
  }
}
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -ms-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: alpha(opacity=0);
  visibility: hidden
}
.search-popup .form-block {
  margin-top: 80px;
  padding: 40px 0;
  background-color: white
}
.search-popup .form-block .title {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  margin-bottom: 6px;
  letter-spacing: 6px
}
.search-popup .form-block .searchform {
  padding-bottom: 4px;
  position: relative;
  border: none;
  border-bottom: 2px solid #000;
  background: none;
  color: inherit
}
.search-popup .form-block .searchform .input {
  font-size: 40px;
  color: #000;
  font-style: normal;
  text-transform: uppercase;
  width: 100%;
  padding: 0 55px 0 0
}
.search-popup .form-block .searchform .input::-webkit-input-placeholder {
  color: #000
}
.search-popup .form-block .searchform .input:-moz-placeholder {
  color: #000
}
.search-popup .form-block .searchform .input::-moz-placeholder {
  color: #000
}
.search-popup .form-block .searchform .input:-ms-input-placeholder {
  color: #000
}
.search-popup .form-block .searchform .searchsubmit {
  width: 28px;
  height: 28px;
  background: url(../image/-ico_search.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: 12px
}
.search-popup .form-block .searchform:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: #0c2f71;
  transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease
}
.search-popup .form-block .searchform.focus:before {
  width: 100%
}
.search-popup.active {
  opacity: 1;
  visibility: visible
}
.slogan {
  overflow: hidden
}
.slogan .h1 {
  font-size: 42px;
  color: #383837;
  line-height: 1.2;
  font-weight: 300;
  padding: min(3.4375vw, 66px) 0 min(3.4375vw, 66px);
  position: relative
}
@media (max-width:1600px) {
  .slogan .h1 {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .slogan .h1 {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .slogan .h1 {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .slogan .h1 {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .slogan .h1 {
    padding: 33px 0 33px 0
  }
}
.slogan .h1::before {
  content: '';
  width: 1px;
  height: 270px;
  background: #0c2f71;
  position: absolute;
  top: 70px;
  left: -60px;
  animation: h-line 3s .3s linear both infinite;
  -webkit-animation: h-line 3s .3s linear both infinite
}
@media (max-width:1600px) {
  .slogan .h1 {
    font-size: 36px
  }
}
@media (max-width:1600px) and (max-width:1600px) {
  .slogan .h1 {
    font-size: 32px
  }
}
@media (max-width:1600px) and (max-width:1470px) {
  .slogan .h1 {
    font-size: 28px
  }
}
@media (max-width:1600px) and (max-width:1024px) {
  .slogan .h1 {
    font-size: 24px
  }
}
@media (max-width:1600px) and (max-width:768px) {
  .slogan .h1 {
    font-size: 20px
  }
}
.page-ban {
  position: relative
}
.page-ban .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.page-ban .content .ban-box {
  width: 100%
}
.page-ban .content .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: min(1.35416667vw, 26px);
  margin-top: min(1.35416667vw, 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.2)
}
@media (max-width:1024px) {
  .page-ban .content .wrap-box {
    padding-top: 13px
  }
}
@media (max-width:1024px) {
  .page-ban .content .wrap-box {
    margin-top: 13px
  }
}
.page-ban .content .wrap-box .en {
  font-size: 12px;
  color: white;
  opacity: .4
}
@media (max-width:1200px) {
  .page-ban .content .wrap-box {
    display: none
  }
}
@media (max-width:768px) {
  .page-ban .img {
    height: 200px
  }
  .page-ban .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    object-fit: cover;
    object-position: 50% 50%
  }
  .page-ban .page-title .cn-s {
    font-size: 20px
  }
  .page-ban .page-title .text {
    font-size: 14px
  }
}
.page-title {
  position: relative
}
.page-title .en {

  font-size: 60px;
  color: #222222;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: min(1.04166667vw, 20px)
}
@media (max-width:1600px) {
  .page-title .en {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .page-title .en {
    font-size: 38px
  }
}
@media (max-width:1024px) {
  .page-title .en {
    font-size: 36px
  }
}
@media (max-width:768px) {
  .page-title .en {
    font-size: 28px
  }
}
@media (max-width:1024px) {
  .page-title .en {
    margin-bottom: 10px
  }
}
.page-title .en-white {
  color: white;
  opacity: .2;
  margin-bottom: 0 !important
}
.page-title .cn-s {

  font-size: 46px;
  color: white;
  line-height: 1.4
}
@media (max-width:1600px) {
  .page-title .cn-s {
    font-size: 43px
  }
}
@media (max-width:1470px) {
  .page-title .cn-s {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .page-title .cn-s {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .page-title .cn-s {
    font-size: 27px
  }
}
.page-title .text {
  font-size: 20px;
  color: white;
  line-height: 1.4;
  margin-top: min(.72916667vw, 14px)
}
@media (max-width:1600px) {
  .page-title .text {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .page-title .text {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .page-title .text {
    margin-top: 7px
  }
}
.page-title .cn {
  font-size: 28px;
  color: #222222;
  line-height: 1.4;
  font-weight: bold
}
@media (max-width:1600px) {
  .page-title .cn {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .page-title .cn {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .page-title .cn {
    font-size: 18px
  }
}
.page-title .cn-b {
  font-size: 42px;
  color: #333333;
  line-height: 1;
  position: relative;
  padding-bottom: min(1.40625vw, 27px);
  text-align: center
}
@media (max-width:1600px) {
  .page-title .cn-b {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .page-title .cn-b {
    font-size: 30px
  }
}
@media (max-width:1024px) {
  .page-title .cn-b {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .page-title .cn-b {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .page-title .cn-b {
    padding-bottom: 13.5px
  }
}
.page-title .cn-b::before {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #0c2f71;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto
}
.page-title .cn-x {
  font-size: 42px;
  color: #0c2f71;
  line-height: 1;
	font-weight: 700;
}
@media (max-width:1600px) {
  .page-title .cn-x {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .page-title .cn-x {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .page-title .cn-x {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .page-title .cn-x {
    font-size: 24px
  }
}
.page-title .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end
}
.page-title.page-title2 .en {
  margin-bottom: min(1.77083333vw, 34px)
}
@media (max-width:1024px) {
  .page-title.page-title2 .en {
    margin-bottom: 17px
  }
}
@media (max-width:768px) {
  .page-title {
    text-align: center
  }
  .page-title.page-title2 .en {
    margin-bottom: min(1.04166667vw, 20px)
  }
}
@media (max-width:768px) and (max-width:1024px) {
  .page-title.page-title2 .en {
    margin-bottom: 10px
  }
}
.tip-nav {
  overflow: hidden;
  color: white;
  font-size: 15px
}
@media (max-width:1600px) {
  .tip-nav {
    font-size: 14px
  }
}
.tip-nav a {
  display: inline-block;
  position: relative;
  color: white;
  font-size: 15px;
  transition: all .3s;
  -webkit-transition: all .3s
}
@media (max-width:1600px) {
  .tip-nav a {
    font-size: 14px
  }
}
.tip-nav a:hover {
  color: #0c2f71
}
.wrapper {

  overflow: hidden
}
@media (max-width:1600px) {
  .wrapper {
    margin-top: 80px
  }
}
@media (max-width:1200px) {
  .wrapper {
    margin-top: 65px
  }
}
.index .index-swiper {
  position: relative;
  height: 100vh;
  height: -moz-calc(0);
  height: -webkit-calc(0);
  height: calc(100vh - 100px);
  overflow: hidden
}
.index .index-swiper .swiper-slide {
  height: 100vh;
  height: -moz-calc(0);
  height: -webkit-calc(0);
  height: calc(100vh - 100px)
}
.index .index-swiper .swiper-slide .bg {
  height: 100%;
  background: no-repeat center;
  background-size: cover
}
.index .index-swiper .videoBox {
  position: relative;
  width: 100%;
  height: 100%
}
.index .index-swiper .videoBox:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: .4;
  filter: alpha(opacity=40);
  -webkit-filter: alpha(opacity=40)
}
.index .index-swiper .videoBox video {
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%
}
.index .index-swiper .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 9
}
.index .index-swiper .content .ani {
  position: absolute;
  top: 26.51612vh;
  left: 0;
  width: 100%
}
.index .index-swiper .content .ani .title {
  font-size: 42px;
  color: #333;
  line-height: 1.4;
  width: 43vw;
  margin: auto
}
@media (max-width:1600px) {
  .index .index-swiper .content .ani .title {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .index .index-swiper .content .ani .title {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .index .index-swiper .content .ani .title {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .index .index-swiper .content .ani .title {
    font-size: 24px
  }
}
.index .index-swiper .content .ani .text {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
  margin-top: min(.52083333vw, 10px)
}
@media (max-width:1600px) {
  .index .index-swiper .content .ani .text {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-swiper .content .ani .text {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .index .index-swiper .content .ani .text {
    margin-top: 5px
  }
}
.index .index-swiper .slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  margin-top: 0;
  background: no-repeat center;
  background-size: cover
}
.index .index-swiper .slide-btn.swiper-button-prev {
  left: 50px;
  background-image: url(../image/prev.png)
}
.index .index-swiper .slide-btn.swiper-button-next {
  right: 50px;
  background-image: url(../image/next.png)
}
.index .index-swiper .swiper-pagination {
  height: 0;
  text-align: left;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 76px;
  margin: auto;
  max-width: 1520px
}
.index .index-swiper .swiper-pagination span {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 0 0 8px 0;
  opacity: 1;
  position: relative;
  background: transparent;
  margin: 0 14px 0 0 !important;
  transition: all .4s;
  -webkit-transition: all .4s
}
.index .index-swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71;
  border-color: #0c2f71
}
.index .index-swiper .slide-num {
  position: absolute;
  right: 50%;
  bottom: 50px;
  z-index: 9;

  color: white;
  font-size: 20px;
  line-height: 1;
  margin-right: -760px
}
@media (max-width:1600px) {
  .index .index-swiper .slide-num {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-swiper .slide-num {
    font-size: 16px
  }
}
.index .index-swiper .slide-num .all {
  font-size: 50px
}
@media (max-width:1600px) {
  .index .index-swiper .slide-num .all {
    font-size: 46px
  }
}
@media (max-width:1470px) {
  .index .index-swiper .slide-num .all {
    font-size: 39px
  }
}
@media (max-width:1024px) {
  .index .index-swiper .slide-num .all {
    font-size: 33px
  }
}
@media (max-width:768px) {
  .index .index-swiper .slide-num .all {
    font-size: 27px
  }
}
@media (max-width:1600px) {
  .index .index-swiper {
    height: 100vh;
    height: -moz-calc(20vh);
    height: -webkit-calc(20vh);
    height: calc(100vh - 80px)
  }
  .index .index-swiper .swiper-slide {
    height: 100vh;
    height: -moz-calc(20vh);
    height: -webkit-calc(20vh);
    height: calc(100vh - 80px)
  }
  .index .index-swiper .content .ani {
    padding: 0 40px
  }
  .index .index-swiper .swiper-pagination {
    max-width: 100%;
    padding: 0 40px
  }
  .index .index-swiper .slide-num {
    right: 0;
    margin-right: 40px
  }
}
@media (max-width:1280px) {
  .index .index-swiper .slide-btn {
    display: none
  }
}
@media (max-width:1200px) {
  .index .index-swiper {
    height: 100vh;
    height: -moz-calc(35vh);
    height: -webkit-calc(35vh);
    height: calc(100vh - 65px)
  }
  .index .index-swiper .swiper-slide {
    height: 100vh;
    height: -moz-calc(35vh);
    height: -webkit-calc(35vh);
    height: calc(100vh - 65px)
  }
  .index .index-swiper .content .ani .title {
    width: 60%
  }
}
@media (max-width:768px) {
  .index .index-swiper {
    height: 400px
  }
  .index .index-swiper .swiper-slide {
    height: 400px
  }
  .index .index-swiper .content .ani {
    top: 100px;
    padding: 0 17.5px
  }
  .index .index-swiper .content .ani .title {
    width: 68%
  }
  .index .index-swiper .swiper-pagination {
    max-width: 100%;
    padding: 0 17.5px;
    bottom: 40px
  }
  .index .index-swiper .swiper-pagination span {
    width: 6px;
    height: 6px;
    border-radius: 0 0 4px 0;
    margin: 0 8px 0 0 !important
  }
  .index .index-swiper .slide-num {
    right: 0;
    bottom: 20px;
    margin-right: 17.5px
  }
}
.index .num-box {
  padding: min(2.44791667vw, 47px) 0 min(2.23958333vw, 43px);
  background-color: #efefef
}
@media (max-width:1024px) {
  .index .num-box {
    padding: 23.5px 0 21.5px 0
  }
}
.index .num-box .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 min(3.85416667vw, 74px) 0 min(3.85416667vw, 74px)
}
@media (max-width:1024px) {
  .index .num-box .num {
    padding: 0 37px 0 37px
  }
}
.index .num-box .num .top {
  color: #333333;
  font-size: 16px;
  line-height: 1;
  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;
  vertical-align: top
}
@media (max-width:1600px) {
  .index .num-box .num .top {
    font-size: 14px
  }
}
.index .num-box .num .top span {

  font-size: 42px;
  line-height: 1;
  font-weight: bold;
  margin-top: -6px
}
@media (max-width:1600px) {
  .index .num-box .num .top span {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .index .num-box .num .top span {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .index .num-box .num .top span {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .index .num-box .num .top span {
    font-size: 24px
  }
}
.index .num-box .num .top sup {
  margin-left: 5px
}
.index .num-box .num .bot {
  font-size: 16px;
  color: #808080;
  line-height: 1;
  margin-top: 4px
}
@media (max-width:1600px) {
  .index .num-box .num .bot {
    font-size: 14px
  }
}
@media (max-width:1200px) {
  .index .num-box .num {
    padding: 0
  }
}
@media (max-width:768px) {
  .index .num-box {
    padding: 20px 0 0
  }
  .index .num-box .num {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap
  }
  .index .num-box .num .one {
    text-align: center;
    width: 50%;
    margin-bottom: 20px
  }
  .index .num-box .num .one .top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
  }
  .index .num-box .num .one:last-child {
    display: none
  }
}
.index .index-box1 {
  padding: min(2.86458333vw, 55px) 0 min(4.16666667vw, 80px)
}
@media (max-width:1024px) {
  .index .index-box1 {
    padding: 27.5px 0 40px 0
  }
}
.index .index-box1 .tabBox {
  width: 100%;
  position: absolute;
  top: 39%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}
.index .index-box1 .tab-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative
}
.index .index-box1 .tab-name::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  bottom: 0;
  left: 0
}
.index .index-box1 .tab-name a {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-bottom: min(1.14583333vw, 22px);
  margin-left: min(2.86458333vw, 55px);
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box1 .tab-name a {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .index .index-box1 .tab-name a {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  .index .index-box1 .tab-name a {
    padding-bottom: 11px
  }
}
@media (max-width:1024px) {
  .index .index-box1 .tab-name a {
    margin-left: 27.5px
  }
}
.index .index-box1 .tab-name a::before {
  content: '';
  width: 0;
  height: 2px;
  background-color: #0c2f71;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box1 .tab-name a:hover, .index .index-box1 .tab-name a.on {
  color: #0c2f71
}
.index .index-box1 .tab-name a:hover::before, .index .index-box1 .tab-name a.on::before {
  width: 100%
}
.index .index-box1 .tab-box + .tab-box {
  display: none
}
.index .index-box1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .index .index-box1 .list {
    margin-top: 25px
  }
}
.index .index-box1 .list .item {
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .index .index-box1 .list .item {
    margin-bottom: 13.5px
  }
}
.index .index-box1 .list .item .item-box {
  display: block
}
.index .index-box1 .list .item .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .index .index-box1 .list .item .item-box .img {
    margin-bottom: 13.5px
  }
}
.index .index-box1 .list .item .item-box .img .pb {
  padding-bottom: 70%
}
.index .index-box1 .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box1 .list .item .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(204, 0, 0, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.index .index-box1 .list .item .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.index .index-box1 .list .item .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0
}
.index .index-box1 .list .item .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box1 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .index .index-box1 .list .item .item-box .text-box .name {
    font-size: 15px
  }
}
.index .index-box1 .list .item .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.index .index-box1 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.index .index-box1 .list .item:hover .item-box .img .pb .zz {
  opacity: 1
}
.index .index-box1 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
.index .index-box1 .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .index .index-box1 .more {
    margin-top: 10px
  }
}
.index .index-box1 .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box1 .more a {
    font-size: 14px
  }
}
.index .index-box1 .more a span {
  position: relative;
  z-index: 1
}
.index .index-box1 .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.index .index-box1 .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .index .index-box1 .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .index .index-box1 .more a {
    width: 125px !important;
    height: 35px !important
  }
  .index .index-box1 .more a i {
    display: none
  }
}
.index .index-box1 .more a:hover::before {
  width: 100%;
  left: 0px
}
@media (max-width:1200px) {
  .index .index-box1 {
    padding: 50px 0
  }
  .index .index-box1 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .index .index-box1 .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .index .index-box1 .tabBox {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 10px
  }
  .index .index-box1 .tabBox .tab-name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
  }
  .index .index-box1 .tabBox .tab-name a {
    margin: 0 14px
  }
  .index .index-box1 .list .item {
    width: 50%
  }
  .index .index-box1 .list .item:last-child {
    display: none
  }
}
.index .pin-spacer {
  padding: 0 !important;
  position: relative !important;
  left: 0 !important;
  height: auto !important
}
.index .index-box2 {
  background: url(../image/index-box2-bg.jpg) no-repeat center;
  background-size: cover;
  position: relative !important;
  padding: min(8.33333333vw, 160px) 0 min(10.41666667vw, 200px) !important;
  height: auto !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  overflow: hidden
}
@media (max-width:1024px) {
  .index .index-box2 {
    padding: 80px 0 100px 0
  }
}
.index .index-box2 .content {
  position: relative
}
.index .index-box2 .content .wrap-box {
  width: 56.5%;
  position: relative;
  z-index: 3
}
.index .index-box2 .content .float-text {
  position: absolute;
  right: 200px;
  font-size: 19.5vw;
  opacity: .4;
  color: white;
  text-transform: uppercase;

  margin-top: min(8.07291667vw, 155px)
}
@media (max-width:1024px) {
  .index .index-box2 .content .float-text {
    margin-top: 77.5px
  }
}
.index .index-box2 .content .introduce {
  margin: min(1.5625vw, 30px) 0 min(2.70833333vw, 52px)
}
@media (max-width:1024px) {
  .index .index-box2 .content .introduce {
    margin: 15px 0 26px
  }
}
.index .index-box2 .content .introduce p {
  font-size: 16px;
  color: #666666;
  line-height: 32px
}
@media (max-width:1600px) {
  .index .index-box2 .content .introduce p {
    font-size: 14px
  }
}
.index .index-box2 .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.index .index-box2 .content .list .item {
  position: relative;
  padding: 0 min(2.08333333vw, 40px) 0 min(2.08333333vw, 40px);
  text-align: center
}
@media (max-width:1024px) {
  .index .index-box2 .content .list .item {
    padding: 0 20px 0 20px
  }
}
.index .index-box2 .content .list .item .icon {
  width: 62px;
  height: 59px;
  overflow: hidden;
  position: relative;
  margin: auto;
  margin-top: min(.41666667vw, 8px);
  margin-bottom: min(.625vw, 12px)
}
@media (max-width:1024px) {
  .index .index-box2 .content .list .item .icon {
    margin-top: 4px
  }
}
@media (max-width:1024px) {
  .index .index-box2 .content .list .item .icon {
    margin-bottom: 6px
  }
}
.index .index-box2 .content .list .item .icon .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box2 .content .list .item .icon .img2 {
  opacity: 0
}
.index .index-box2 .content .list .item .name {
  font-size: 16px;
  color: #666666;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box2 .content .list .item .name {
    font-size: 14px
  }
}
.index .index-box2 .content .list .item::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #dedede;
  position: absolute;
  right: 0;
  top: 0
}
.index .index-box2 .content .list .item:first-child {
  padding-left: 0
}
.index .index-box2 .content .list .item:last-child::before {
  display: none
}
.index .index-box2 .content .list .item:hover .icon .img1 {
  opacity: 0
}
.index .index-box2 .content .list .item:hover .icon .img2 {
  opacity: 1
}
.index .index-box2 .content .list .item:hover .name {
  color: #0c2f71
}
.index .index-box2 .content .more {
  margin-top: min(4.94791667vw, 95px)
}
@media (max-width:1024px) {
  .index .index-box2 .content .more {
    margin-top: 47.5px
  }
}
.index .index-box2 .content .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box2 .content .more a {
    font-size: 14px
  }
}
.index .index-box2 .content .more a span {
  position: relative;
  z-index: 1
}
.index .index-box2 .content .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.index .index-box2 .content .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .index .index-box2 .content .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .index .index-box2 .content .more a {
    width: 125px !important;
    height: 35px !important
  }
  .index .index-box2 .content .more a i {
    display: none
  }
}
.index .index-box2 .content .more a:hover::before {
  width: 100%;
  left: 0px
}
.index .index-box2::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/index-box2-bg2.png) no-repeat right bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2
}
@media (max-width:1200px) {
  .index .index-box2 {
    padding: 50px 0 !important
  }
  .index .index-box2::before {
    right: -10%
  }
  .index .index-box2 .content .introduce p {
    line-height: 24px
  }
  .index .index-box2 .content .list .item .icon {
    width: 47px;
    height: 45px
  }
}
@media (max-width:768px) {
  .index .index-box2 .content .float-text {
    margin-top: 20px
  }
  .index .index-box2 .content .wrap-box {
    width: 100%
  }
  .index .index-box2 .content .list {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap
  }
  .index .index-box2 .content .list .item {
    width: 50%;
    padding: 0;
    margin-bottom: 10px
  }
  .index .index-box2 .content .list .item .item-box {
    padding: 0 10px;
    width: 100%
  }
  .index .index-box2 .content .list .item:nth-child(2)::before {
    display: none
  }
}
.index .index-box3 {
  background: url(../image/index-box3-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(3.125vw, 60px) 0 min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .index .index-box3 {
    padding: 30px 0 30px 0
  }
}
.index .index-box3 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 75px;
  background-color: white;
  border-radius: 6px;
  padding-left: min(2.5vw, 48px)
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box {
    padding-left: 24px
  }
}
.index .index-box3 .wrap-box .text {
  font-size: 16px;
  color: #555555
}
@media (max-width:1600px) {
  .index .index-box3 .wrap-box .text {
    font-size: 14px
  }
}
.index .index-box3 .wrap-box .text em {
  font-size: 20px;
  color: #0c2f71;
  margin-left: min(.83333333vw, 16px)
}
@media (max-width:1600px) {
  .index .index-box3 .wrap-box .text em {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-box3 .wrap-box .text em {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .text em {
    margin-left: 8px
  }
}
.index .index-box3 .wrap-box .wrap-le {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.index .index-box3 .wrap-box .wrap-le .text {
  color: #333333;
  position: relative;
  padding-right: min(1.45833333vw, 28px);
  margin-right: min(1.875vw, 36px)
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .wrap-le .text {
    padding-right: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .wrap-le .text {
    margin-right: 18px
  }
}
.index .index-box3 .wrap-box .wrap-le .text::before {
  content: '';
  width: 1px;
  height: 14px;
  background-color: #cdcdcd;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto
}
.index .index-box3 .wrap-box .wrap-ri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.index .index-box3 .wrap-box .wrap-ri a {
  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;
  background-color: #0c2f71;
  height: 68px;
  border-radius: 0 6px 6px 0;
  margin-right: 3px;
  font-size: 16px;
  color: white;
  padding: 0 min(3.48958333vw, 67px) 0 min(3.33333333vw, 64px);
  margin-left: min(2.70833333vw, 52px);
  position: relative;
  overflow: hidden
}
@media (max-width:1600px) {
  .index .index-box3 .wrap-box .wrap-ri a {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .wrap-ri a {
    padding: 0 33.5px 0 32px
  }
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .wrap-ri a {
    margin-left: 26px
  }
}
.index .index-box3 .wrap-box .wrap-ri a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.index .index-box3 .wrap-box .wrap-ri a i {
  width: 23px;
  height: 100%;
  background: url(../image/index3-kf.png) no-repeat center;
  background-size: 23px 23px;
  margin-right: min(.52083333vw, 10px);
  position: relative;
  z-index: 1
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .wrap-ri a i {
    margin-right: 5px
  }
}
.index .index-box3 .wrap-box .wrap-ri a em {
  position: relative;
  z-index: 1
}
.index .index-box3 .wrap-box .wrap-ri a:hover::before {
  width: 100%;
  left: 0px
}
.index .index-box3 .wrap-box .index-slide3 {
  height: 75px;
  overflow: hidden
}
.index .index-box3 .wrap-box .index-slide3 .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 16px;
  color: #555555
}
@media (max-width:1600px) {
  .index .index-box3 .wrap-box .index-slide3 .item {
    font-size: 14px
  }
}
.index .index-box3 .wrap-box .index-slide3 .item .phone {
  margin: 0 min(3.59375vw, 69px) 0 min(2.70833333vw, 52px)
}
@media (max-width:1024px) {
  .index .index-box3 .wrap-box .index-slide3 .item .phone {
    margin: 0 34.5px 0 26px
  }
}
@media (max-width:1200px) {
  .index .index-box3 .wrap-box {
    padding: 0 20px 10px;
    display: block;
    height: auto
  }
}
@media (max-width:768px) {
  .index .index-box3 .wrap-box {
    padding-top: 10px
  }
  .index .index-box3 .wrap-box .wrap-le {
    display: block
  }
  .index .index-box3 .wrap-box .wrap-le .text::before {
    display: none
  }
  .index .index-box3 .wrap-box .wrap-ri {
    display: block
  }
  .index .index-box3 .wrap-box .wrap-ri a {
    width: 100%;
    margin: 0;
    border-radius: 6px;
    height: 45px;
    margin-top: 10px
  }
  .index .index-box3 .wrap-box .index-slide3 {
    height: 40px
  }
  .index .index-box3 .wrap-box .index-slide3 .item .phone {
    margin: 0 10px
  }
}
.index .index-box4 {
  background: url(../image/index-box4-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: min(5vw, 96px) 0 min(5.72916667vw, 110px)
}
@media (max-width:1024px) {
  .index .index-box4 {
    padding: 48px 0 55px 0
  }
}
.index .index-box4 .page-title {
  text-align: center
}
.index .index-box4 .slide-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 57px 48px 0 48px;
  margin-top: min(2.86458333vw, 55px);
  position: relative
}
@media (max-width:1024px) {
  .index .index-box4 .slide-box {
    margin-top: 27.5px
  }
}
.index .index-box4 .slide-box .swiper-button-ico {
  width: 60px;
  height: 60px;
  background: no-repeat center rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-top: -30px;
  transition: all .3s;
  -webkit-transition: all .3s
}
.index .index-box4 .slide-box .swiper-button-ico.swiper-button-prev {
  left: -30px;
  background-image: url(../image/prev2.png)
}
.index .index-box4 .slide-box .swiper-button-ico.swiper-button-next {
  right: -30px;
  background-image: url(../image/next2.png)
}
.index .index-box4 .slide-box .swiper-button-ico:hover {
  background-color: #0c2f71
}
.index .index-box4 .slide-box .index-slide4 {
  padding-bottom: 60px
}
.index .index-box4 .slide-box .index-slide4 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  opacity: 0
}
.index .index-box4 .slide-box .index-slide4 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.index .index-box4 .slide-box .index-slide4 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
.index .index-box4 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.index .index-box4 .wrap-box .time {
  font-size: 14px;
  color: #999999;
  line-height: 1;
  transition: all .3s;
  -webkit-transition: all .3s
}
.index .index-box4 .wrap-box .time em {
  font-size: 40px;
  color: #333333;
  display: block
}
@media (max-width:1600px) {
  .index .index-box4 .wrap-box .time em {
    font-size: 38px
  }
}
@media (max-width:1470px) {
  .index .index-box4 .wrap-box .time em {
    font-size: 33px
  }
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .time em {
    font-size: 29px
  }
}
@media (max-width:768px) {
  .index .index-box4 .wrap-box .time em {
    font-size: 24px
  }
}
.index .index-box4 .wrap-box .name {
  font-size: 20px;
  color: #333333;
  line-height: 1.4;
  font-weight: bold;
  max-width: 94%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .3s;
  -webkit-transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box4 .wrap-box .name {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-box4 .wrap-box .name {
    font-size: 16px
  }
}
.index .index-box4 .wrap-box .text {
  font-size: 15px;
  color: #777777;
  line-height: 26px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all .3s;
  -webkit-transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box4 .wrap-box .text {
    font-size: 14px
  }
}
.index .index-box4 .wrap-box .wrap-le {
  width: 51.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-content: space-between;
  align-content: space-between
}
.index .index-box4 .wrap-box .wrap-le .item {
  width: 100%;
  height: 49%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: min(1.40625vw, 27px) 0 min(1.61458333vw, 31px);
  padding-right: min(1.45833333vw, 28px);
  padding-left: min(1.45833333vw, 28px)
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-le .item {
    padding: 13.5px 0 15.5px 0
  }
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-le .item {
    padding-right: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-le .item {
    padding-left: 14px
  }
}
.index .index-box4 .wrap-box .wrap-le .item .img {
  width: 37%;
  overflow: hidden
}
.index .index-box4 .wrap-box .wrap-le .item .img .pb {
  padding-bottom: 70%
}
.index .index-box4 .wrap-box .wrap-le .item .name {
  margin: min(.52083333vw, 10px) 0 min(.83333333vw, 16px)
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-le .item .name {
    margin: 5px 0 8px
  }
}
.index .index-box4 .wrap-box .wrap-le .item .text-box {
  width: 57.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.index .index-box4 .wrap-box .wrap-le .item:hover {
  background-color: #0c2f71
}
.index .index-box4 .wrap-box .wrap-le .item:hover .time {
  color: rgba(255, 255, 255, 0.3)
}
.index .index-box4 .wrap-box .wrap-le .item:hover .name {
  color: white
}
.index .index-box4 .wrap-box .wrap-le .item:hover .text {
  color: rgba(255, 255, 255, 0.6)
}
.index .index-box4 .wrap-box .wrap-ri {
  width: 47.7%;
  background-color: white;
  padding: 0 min(2.1875vw, 42px) 0 min(1.875vw, 36px)
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-ri {
    padding: 0 21px 0 18px
  }
}
.index .index-box4 .wrap-box .wrap-ri .item {
  border-bottom: 1px solid #dfdfdf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: min(2.08333333vw, 40px) 0 min(1.875vw, 36px)
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-ri .item {
    padding: 20px 0 18px 0
  }
}
.index .index-box4 .wrap-box .wrap-ri .item .time {
  width: 17.5%
}
.index .index-box4 .wrap-box .wrap-ri .item .time-m {
  display: none
}
.index .index-box4 .wrap-box .wrap-ri .item .name {
  margin-bottom: min(.52083333vw, 10px)
}
@media (max-width:1024px) {
  .index .index-box4 .wrap-box .wrap-ri .item .name {
    margin-bottom: 5px
  }
}
.index .index-box4 .wrap-box .wrap-ri .item .text-box {
  width: 82.5%
}
.index .index-box4 .wrap-box .wrap-ri .item:last-child {
  border: none
}
.index .index-box4 .wrap-box .wrap-ri .item:hover .name {
  color: #0c2f71
}
@media (max-width:1200px) {
  .index .index-box4 {
    padding: 50px 0;
    background-attachment: inherit
  }
  .index .index-box4 .slide-box {
    padding: 10px 10px 0
  }
  .index .index-box4 .slide-box .index-slide4 .swiper-pagination {
    opacity: 1
  }
  .index .index-box4 .slide-box .swiper-button-ico {
    display: none
  }
  .index .index-box4 .wrap-box .name {
    width: 74%
  }
  .index .index-box4 .wrap-box .wrap-le .text {
    width: 80%
  }
}
@media (max-width:768px) {
  .index .index-box4 .wrap-box {
    display: block
  }
  .index .index-box4 .wrap-box .name {
    width: 100%
  }
  .index .index-box4 .wrap-box .wrap-le {
    width: 100%
  }
  .index .index-box4 .wrap-box .wrap-le .item .text-box {
    width: 100%
  }
  .index .index-box4 .wrap-box .wrap-le .item .img {
    display: none
  }
  .index .index-box4 .wrap-box .wrap-le .item .text {
    width: 100%
  }
  .index .index-box4 .wrap-box .wrap-ri {
    width: 100%;
    margin-top: 10px
  }
  .index .index-box4 .wrap-box .wrap-ri .item {
    display: block
  }
  .index .index-box4 .wrap-box .wrap-ri .item .time {
    width: auto;
    display: none
  }
  .index .index-box4 .wrap-box .wrap-ri .item .time-m {
    display: block;
    margin-bottom: 5px
  }
  .index .index-box4 .wrap-box .wrap-ri .item .text-box {
    flex: 1;
    width: auto
  }
}
.index .index-box5 {
  background: url(../image/index-box5-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(4.42708333vw, 85px) 0 min(3.90625vw, 75px)
}
@media (max-width:1024px) {
  .index .index-box5 {
    padding: 42.5px 0 37.5px 0
  }
}
.index .index-box5 .page-title {
  text-align: center
}
.index .index-box5 .slide-box {
  margin-top: min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .index .index-box5 .slide-box {
    margin-top: 30px
  }
}
.index .index-box5 .slide-box .index-slide5 {
  padding-bottom: min(4.79166667vw, 92px)
}
@media (max-width:1024px) {
  .index .index-box5 .slide-box .index-slide5 {
    padding-bottom: 46px
  }
}
.index .index-box5 .slide-box .index-slide5 .img {
  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;
  height: 106px;
  background-color: white;
  border: 1px solid #f2f2f2;
  overflow: hidden;
  transition: all .3s;
  -webkit-transition: all .3s
}
.index .index-box5 .slide-box .index-slide5 .img:hover {
  box-shadow: 0 3px 27px rgba(0, 0, 0, 0.1)
}
.index .index-box5 .slide-box .index-slide5 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 0;
  margin-bottom: min(.72916667vw, 14px)
}
@media (max-width:1024px) {
  .index .index-box5 .slide-box .index-slide5 .swiper-pagination {
    margin-bottom: 7px
  }
}
.index .index-box5 .slide-box .index-slide5 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.index .index-box5 .slide-box .index-slide5 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
.index .index-box5 .slide-box .swiper-button-ico {
  display: none
}
.index .index-box5 .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .index .index-box5 .more {
    margin-top: 10px
  }
}
.index .index-box5 .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box5 .more a {
    font-size: 14px
  }
}
.index .index-box5 .more a span {
  position: relative;
  z-index: 1
}
.index .index-box5 .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.index .index-box5 .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .index .index-box5 .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .index .index-box5 .more a {
    width: 125px !important;
    height: 35px !important
  }
  .index .index-box5 .more a i {
    display: none
  }
}
.index .index-box5 .more a:hover::before {
  width: 100%;
  left: 0px
}
@media (max-width:1200px) {
  .index .index-box5 {
    padding: 50px 0
  }
}
.index .index-box6 {
  padding-top: min(3.38541667vw, 65px)
}
@media (max-width:1024px) {
  .index .index-box6 {
    padding-top: 32.5px
  }
}
.index .index-box6 .page-title {
  text-align: center
}
.index .index-box6 .wrap-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px
}
.index .index-box6 .wrap-box .div1 {
  grid-area: 1 / 1 / 3 / 3
}
.index .index-box6 .wrap-box .div1.item .item-box .img .pb {
  padding-bottom: 75%
}
.index .index-box6 .wrap-box .div1.item .item-box .text-box .name {
  font-size: 28px
}
@media (max-width:1600px) {
  .index .index-box6 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .index .index-box6 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .index .index-box6 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 18px
  }
}
.index .index-box6 .wrap-box .div2 {
  grid-area: 1 / 3 / 2 / 4
}
.index .index-box6 .wrap-box .div3 {
  grid-area: 1 / 4 / 2 / 5
}
.index .index-box6 .wrap-box .div4 {
  grid-area: 2 / 3 / 3 / 4
}
.index .index-box6 .wrap-box .div5 {
  grid-area: 2 / 4 / 3 / 5
}
.index .index-box6 .wrap-box .item .item-box {
  position: relative;
  display: block;
  overflow: hidden
}
.index .index-box6 .wrap-box .item .item-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/index6-item-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1
}
.index .index-box6 .wrap-box .item .item-box .img {
  overflow: hidden
}
.index .index-box6 .wrap-box .item .item-box .img .pb {
  padding-bottom: 74.5%
}
.index .index-box6 .wrap-box .item .item-box .text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 min(1.5625vw, 30px) 0 min(1.5625vw, 30px);
  margin-bottom: min(1.14583333vw, 22px)
}
@media (max-width:1024px) {
  .index .index-box6 .wrap-box .item .item-box .text-box {
    padding: 0 15px 0 15px
  }
}
@media (max-width:1024px) {
  .index .index-box6 .wrap-box .item .item-box .text-box {
    margin-bottom: 11px
  }
}
.index .index-box6 .wrap-box .item .item-box .text-box .name {
  font-size: 18px;
  color: #333333;
  line-height: 1.4
}
@media (max-width:1600px) {
  .index .index-box6 .wrap-box .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .index .index-box6 .wrap-box .item .item-box .text-box .name {
    font-size: 15px
  }
}
.index .index-box6 .wrap-box .item .item-box .text-box .label {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  margin-top: min(.20833333vw, 4px)
}
@media (max-width:1024px) {
  .index .index-box6 .wrap-box .item .item-box .text-box .label {
    margin-top: 2px
  }
}
.index .index-box6 .wrap-box .item .item-box .text-box .text {
  font-size: 16px;
  color: #666666;
  line-height: 1.4;
  margin-top: min(1.25vw, 24px);
  height: 0;
  opacity: 0
}
@media (max-width:1600px) {
  .index .index-box6 .wrap-box .item .item-box .text-box .text {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box6 .wrap-box .item .item-box .text-box .text {
    margin-top: 12px
  }
}
.index .index-box6 .wrap-box .item:hover .item-box::before {
  opacity: 1
}
.index .index-box6 .wrap-box .item:hover .item-box .text-box .name, .index .index-box6 .wrap-box .item:hover .item-box .text-box .label {
  -webkit-animation: fadeInUpsb .5s linear 1 forwards;
  animation: fadeInUpsb .5s linear 1 forwards;
  opacity: 1 !important
}
.index .index-box6 .wrap-box .item:hover .item-box .text-box .text {
  height: auto;
  -webkit-animation: fadeInUp .5s linear 1 forwards;
  animation: fadeInUp .5s linear 1 forwards;
  opacity: 1 !important
}
.index .index-box6 .slide-box {
  margin-top: min(2.08333333vw, 40px)
}
@media (max-width:1024px) {
  .index .index-box6 .slide-box {
    margin-top: 20px
  }
}
.index .index-box6 .slide-box .index-slide6 {
  padding-bottom: min(5.52083333vw, 106px)
}
@media (max-width:1024px) {
  .index .index-box6 .slide-box .index-slide6 {
    padding-bottom: 53px
  }
}
.index .index-box6 .slide-box .index-slide6 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 0;
  margin-bottom: min(1.45833333vw, 28px)
}
@media (max-width:1024px) {
  .index .index-box6 .slide-box .index-slide6 .swiper-pagination {
    margin-bottom: 14px
  }
}
.index .index-box6 .slide-box .index-slide6 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.index .index-box6 .slide-box .index-slide6 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
.index .index-box6 .slide-box .swiper-button-ico {
  display: none
}
@media (max-width:1200px) {
  .index .index-box6 {
    padding: 50px 0 0
  }
}
@media (max-width:768px) {
  .index .index-box6 {
    padding: 50px 0 0
  }
  .index .index-box6 .wrap-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-left: -7px;
    margin-right: -7px
  }
  .index .index-box6 .wrap-box .item {
    margin-top: 10px;
    width: 50%;
    padding: 0 7px
  }
  .index .index-box6 .wrap-box .item .item-box .text-box {
    padding: 0 10px
  }
  .index .index-box6 .wrap-box .item .item-box .text-box .text {
    display: none
  }
  .index .index-box6 .wrap-box .item:last-child {
    display: none
  }
}
.index .index-box7 {
  padding: min(1.97916667vw, 38px) 0 min(4.6875vw, 90px)
}
@media (max-width:1024px) {
  .index .index-box7 {
    padding: 19px 0 45px 0
  }
}
.index .index-box7 .page-title {
  text-align: center
}
.index .index-box7 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .index .index-box7 .list {
    margin-top: 25px
  }
}
.index .index-box7 .list .item {
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .index .index-box7 .list .item {
    margin-bottom: 13.5px
  }
}
.index .index-box7 .list .item .item-box {
  background-color: #f0f0f0;
  display: block
}
.index .index-box7 .list .item .item-box .img {
  overflow: hidden
}
.index .index-box7 .list .item .item-box .img .pb {
  padding-bottom: 47%
}
.index .index-box7 .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box7 .list .item .item-box .text-box {
  padding: 0 min(1.35416667vw, 26px) 0 min(1.35416667vw, 26px);
  padding-top: min(1.66666667vw, 32px);
  padding-bottom: min(2.1875vw, 42px)
}
@media (max-width:1024px) {
  .index .index-box7 .list .item .item-box .text-box {
    padding: 0 13px 0 13px
  }
}
@media (max-width:1024px) {
  .index .index-box7 .list .item .item-box .text-box {
    padding-top: 16px
  }
}
@media (max-width:1024px) {
  .index .index-box7 .list .item .item-box .text-box {
    padding-bottom: 21px
  }
}
.index .index-box7 .list .item .item-box .text-box .name {
  font-size: 24px;
  color: #333333;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box7 .list .item .item-box .text-box .name {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .index .index-box7 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
.index .index-box7 .list .item .item-box .text-box .label {
  font-size: 15px;
  color: #999999;
  line-height: 1.4;
  margin: min(.41666667vw, 8px) 0 min(1.35416667vw, 26px)
}
@media (max-width:1600px) {
  .index .index-box7 .list .item .item-box .text-box .label {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box7 .list .item .item-box .text-box .label {
    margin: 4px 0 13px
  }
}
.index .index-box7 .list .item .item-box .text-box .text {
  font-size: 16px;
  color: #555555;
  line-height: 28px
}
@media (max-width:1600px) {
  .index .index-box7 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}
.index .index-box7 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.index .index-box7 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
@media (max-width:1200px) {
  .index .index-box7 {
    padding: 50px 0
  }
  .index .index-box7 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .index .index-box7 .list .item {
    padding: 0 7px
  }
  .index .index-box7 .list .item .item-box .text-box .text {
    line-height: 24px
  }
}
@media (max-width:768px) {
  .index .index-box7 .list .item {
    width: 100%
  }
}
.index .index-box8 {
  padding: min(5.46875vw, 105px) 0 min(5.05208333vw, 97px);
  background: url(../image/index-box8-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed
}
@media (max-width:1024px) {
  .index .index-box8 {
    padding: 52.5px 0 48.5px 0
  }
}
.index .index-box8 .page-title {
  text-align: center
}
.index .index-box8 .slogan {
  text-align: center;
  margin: min(2.60416667vw, 50px) 0 min(1.875vw, 36px)
}
@media (max-width:1024px) {
  .index .index-box8 .slogan {
    margin: 25px 0 18px
  }
}
.index .index-box8 .slogan .name {
  font-size: 44px;
  color: #0c2f71;
  line-height: 1.4;
  font-weight: bold
}
@media (max-width:1600px) {
  .index .index-box8 .slogan .name {
    font-size: 42px
  }
}
@media (max-width:1470px) {
  .index .index-box8 .slogan .name {
    font-size: 38px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .slogan .name {
    font-size: 32px
  }
}
@media (max-width:768px) {
  .index .index-box8 .slogan .name {
    font-size: 26px
  }
}
.index .index-box8 .slogan .text {
  font-size: 28px;
  color: #222222;
  line-height: 1.4
}
@media (max-width:1600px) {
  .index .index-box8 .slogan .text {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .index .index-box8 .slogan .text {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .slogan .text {
    font-size: 18px
  }
}
.index .index-box8 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 min(7.5vw, 144px) 0 min(5.10416667vw, 98px);
  padding-top: min(2.34375vw, 45px);
  padding-bottom: min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .index .index-box8 .list {
    padding: 0 72px 0 49px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .list {
    padding-top: 22.5px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .list {
    padding-bottom: 30px
  }
}
.index .index-box8 .list .item {
  text-align: center
}
.index .index-box8 .list .item .yuan {
  border-radius: 50%;
  background: #fff;
  position: relative;
  overflow: hidden
}
.index .index-box8 .list .item .yuan img {
  border-radius: 50%;
  border: 3px solid #b0b0b0;
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box8 .list .item .text-box {
  white-space: nowrap
}
.index .index-box8 .list .item .text-box .name {
  font-size: 22px;
  color: #0c2f71;
  line-height: 1.2;
  font-weight: bold;
  margin: min(1.30208333vw, 25px) 0 min(.41666667vw, 8px)
}
@media (max-width:1600px) {
  .index .index-box8 .list .item .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1470px) {
  .index .index-box8 .list .item .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .list .item .text-box .name {
    margin: 12.5px 0 4px
  }
}
.index .index-box8 .list .item .text-box .text {
  font-size: 16px;
  color: #333333;
  line-height: 1.2
}
@media (max-width:1600px) {
  .index .index-box8 .list .item .text-box .text {
    font-size: 14px
  }
}
.index .index-box8 .list .item.active {
  width: 100%;
  height: auto
}
.index .index-box8 .list .item:hover .yuan img {
  border-color: #0c2f71
}
.index .index-box8 .list .line {
  width: 100%;
  height: 10px;
  background: url(../image/ico-jt.png) no-repeat center;
  position: relative;
  max-width: 38px;
  margin-top: min(-2.60416667vw, -50px)
}
@media (max-width:1024px) {
  .index .index-box8 .list .line {
    margin-top: -25px
  }
}
.index .index-box8 .down {
  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;
  margin-top: min(2.08333333vw, 40px)
}
@media (max-width:1024px) {
  .index .index-box8 .down {
    margin-top: 20px
  }
}
.index .index-box8 .text-call {
  padding-left: 62px;
  background: url(../image/-float-call-ico.png) no-repeat left center;
  background-size: 48px 48px;
  min-height: 48px
}
.index .index-box8 .text-call .name {
  font-size: 14px;
  color: 333333
}
.index .index-box8 .text-call .text {
  font-size: 24px;
  color: #0c2f71;
  line-height: 1;
  font-weight: bold;
  margin-top: min(.41666667vw, 8px)
}
@media (max-width:1600px) {
  .index .index-box8 .text-call .text {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .index .index-box8 .text-call .text {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .index .index-box8 .text-call .text {
    margin-top: 4px
  }
}
@media (max-width:1200px) {
  .index .index-box8 {
    padding: 50px 0;
    background-attachment: inherit
  }
}
@media (max-width:1024px) {
  .index .index-box8 .list {
    flex-flow: wrap;
    grid-gap: 20px;
    padding: 10px
  }
  .index .index-box8 .list .item {
    margin-top: 10px
  }
  .index .index-box8 .list .item .yuan img {
    width: 90px
  }
}
@media (max-width:768px) {
  .index .index-box8 .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 0
  }
  .index .index-box8 .list .item {
    width: 50%
  }
  .index .index-box8 .list .line {
    display: none
  }
}
.index .index-box9 {
  margin-top: min(5.46875vw, 105px)
}
@media (max-width:1024px) {
  .index .index-box9 {
    margin-top: 52.5px
  }
}
.index .index-box9 .tabBox {
  width: 100%;
  position: absolute;
  top: 39%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}
.index .index-box9 .tab-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative
}
.index .index-box9 .tab-name::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  position: absolute;
  bottom: 0;
  left: 0
}
.index .index-box9 .tab-name a {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding-bottom: min(1.14583333vw, 22px);
  margin-left: min(2.86458333vw, 55px);
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box9 .tab-name a {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .index .index-box9 .tab-name a {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  .index .index-box9 .tab-name a {
    padding-bottom: 11px
  }
}
@media (max-width:1024px) {
  .index .index-box9 .tab-name a {
    margin-left: 27.5px
  }
}
.index .index-box9 .tab-name a::before {
  content: '';
  width: 0;
  height: 2px;
  background-color: #0c2f71;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box9 .tab-name a:hover, .index .index-box9 .tab-name a.on {
  color: #0c2f71
}
.index .index-box9 .tab-name a:hover::before, .index .index-box9 .tab-name a.on::before {
  width: 100%
}
.index .index-box9 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(2.34375vw, 45px)
}
@media (max-width:1024px) {
  .index .index-box9 .list {
    margin-top: 22.5px
  }
}
.index .index-box9 .list .item {
  width: 33.33333333%;
  padding: 0 17px
}
.index .index-box9 .list .item .item-box {
  background-color: #f0f0f0;
  display: block;
  height: 100%;
  position: relative
}
.index .index-box9 .list .item .item-box .item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 32px;
  background-color: #0c2f71;
  padding: 0 min(.83333333vw, 16px) 0 min(.83333333vw, 16px);
  font-size: 14px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}
@media (max-width:1024px) {

  .index .index-box9 .list .item .item-box .item-label {
    padding: 0 8px 0 8px
  }
}
.index .index-box9 .list .item .item-box .img {
  overflow: hidden
}
.index .index-box9 .list .item .item-box .img .pb {
  padding-bottom: 62%
}
.index .index-box9 .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.index .index-box9 .list .item .item-box .text-box {
  padding: 0 min(1.30208333vw, 25px) 0 min(1.30208333vw, 25px);
  padding-top: min(1.25vw, 24px);
  padding-bottom: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .text-box {
    padding: 0 12.5px 0 12.5px
  }
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .text-box {
    padding-top: 12px
  }
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .text-box {
    padding-bottom: 25px
  }
}
.index .index-box9 .list .item .item-box .text-box .name {
  font-size: 20px;
  color: #333333;
  line-height: 1.4;
  max-width: 94%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box9 .list .item .item-box .text-box .name {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-box9 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
.index .index-box9 .list .item .item-box .text-box .date {
  font-size: 14px;
  color: #999999;
  line-height: 1;
  margin: min(.83333333vw, 16px) 0 min(.52083333vw, 10px)
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .text-box .date {
    margin: 8px 0 5px
  }
}
.index .index-box9 .list .item .item-box .text-box .text {
  font-size: 16px;
  color: #666666;
  line-height: 32px
}
@media (max-width:1600px) {
  .index .index-box9 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}
.index .index-box9 .list .item .item-box .a-box {
  display: block;
  padding: 0 min(1.30208333vw, 25px) 0 min(1.30208333vw, 25px);
  margin-bottom: min(1.35416667vw, 26px)
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .a-box {
    padding: 0 12.5px 0 12.5px
  }
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .a-box {
    margin-bottom: 13px
  }
}
.index .index-box9 .list .item .item-box .a-box .name {
  font-size: 20px;
  color: #333333;
  line-height: 1.4;
  max-width: 94%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .index .index-box9 .list .item .item-box .a-box .name {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .index .index-box9 .list .item .item-box .a-box .name {
    font-size: 16px
  }
}
.index .index-box9 .list .item .item-box .a-box .date {
  font-size: 14px;
  color: #999999;
  line-height: 1;
  margin: min(.83333333vw, 16px) 0 min(.52083333vw, 10px)
}
@media (max-width:1024px) {
  .index .index-box9 .list .item .item-box .a-box .date {
    margin: 8px 0 5px
  }
}
.index .index-box9 .list .item .item-box .a-box:hover .name {
  color: #0c2f71
}
.index .index-box9 .list .item:last-child .item-box {
  padding-top: min(3.22916667vw, 62px)
}
@media (max-width:1024px) {
  .index .index-box9 .list .item:last-child .item-box {
    padding-top: 31px
  }
}
.index .index-box9 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.index .index-box9 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
@media (max-width:1200px) {
  .index .index-box9 {
    margin-top: 50px
  }
  .index .index-box9 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .index .index-box9 .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .index .index-box9 .tabBox {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 10px
  }
  .index .index-box9 .tabBox .tab-name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
  }
  .index .index-box9 .tabBox .tab-name a {
    margin: 0 14px
  }
  .index .index-box9 .list .item {
    width: 100%;
    margin-bottom: 10px
  }
  .index .index-box9 .list .item .item-box .item-label {
    font-size: 12px
  }
  .index .index-box9 .list .item:last-child {
    width: 100%
  }
  .index .index-box9 .list .item:last-child .item-box {
    padding-top: 50px
  }
}
.index .index-box10 {
  padding: min(4.94791667vw, 95px) 0 min(4.6875vw, 90px)
}
@media (max-width:1024px) {
  .index .index-box10 {
    padding: 47.5px 0 45px 0
  }
}
.index .index-box10 .wrap-box {
  border: 1px solid #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: min(2.8125vw, 54px) 0 min(2.8125vw, 54px);
  padding-left: min(2.5vw, 48px);
  padding-right: min(2.5vw, 48px);
  margin-top: min(2.86458333vw, 55px)
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box {
    padding: 27px 0 27px 0
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box {
    padding-left: 24px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box {
    padding-right: 24px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box {
    margin-top: 27.5px
  }
}
.index .index-box10 .wrap-box .list {
  width: 20.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  text-align: center
}
.index .index-box10 .wrap-box .list .item {
  width: 50%
}
.index .index-box10 .wrap-box .list .item .img {
  width: 73px;
  height: 73px;
  background-color: #0c2f71;
  border-radius: 50%;
  overflow: hidden;
  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;
  margin: auto
}
.index .index-box10 .wrap-box .list .item .img img {
  width: 42%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.index .index-box10 .wrap-box .list .item .name {
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  margin-top: min(.52083333vw, 10px)
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .list .item .name {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .list .item .name {
    margin-top: 5px
  }
}
.index .index-box10 .wrap-box .list .item:hover .img img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg)
}
.index .index-box10 .wrap-box .wrap-c {
  width: 42.2%;
  border: 1px solid #e3e3e3;
  border-top: none;
  border-bottom: none;
  padding: 0 min(2.34375vw, 45px) 0 min(2.34375vw, 45px)
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c {
    padding: 0 22.5px 0 22.5px
  }
}
.index .index-box10 .wrap-box .wrap-c .name {
  font-size: 16px;
  color: #666666
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-c .name {
    font-size: 14px
  }
}
.index .index-box10 .wrap-box .wrap-c .name em {
  font-size: 28px;
  color: #0c2f71;
  margin-right: min(.625vw, 12px)
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-c .name em {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .index .index-box10 .wrap-box .wrap-c .name em {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .name em {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .name em {
    margin-right: 6px
  }
}
.index .index-box10 .wrap-box .wrap-c .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: min(1.35416667vw, 26px)
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .info-list {
    margin-top: 13px
  }
}
.index .index-box10 .wrap-box .wrap-c .info-list .widget-w5 {
  width: 50%;
  padding: 0 6px
}
.index .index-box10 .wrap-box .wrap-c .widget-label {
  position: relative;
  margin: min(.9375vw, 18px) 0 min(.9375vw, 18px)
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .widget-label {
    margin: 9px 0 9px
  }
}
.index .index-box10 .wrap-box .wrap-c .widget-label label {
  font-size: 16px;
  color: #333333
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-c .widget-label label {
    font-size: 14px
  }
}
.index .index-box10 .wrap-box .wrap-c .form-control {
  width: 100%;
  height: 56px;
  background-color: #f0f0f0;
  padding: 0 min(1.04166667vw, 20px) 0 min(1.04166667vw, 20px);
  color: #666666;
  font-size: 16px
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .form-control {
    padding: 0 10px 0 10px
  }
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-c .form-control {
    font-size: 14px
  }
}
.index .index-box10 .wrap-box .wrap-c .btn {
  width: 100%;
  height: 56px;
  background-color: #0c2f71;
  text-align: center;
  font-size: 16px;
  color: white;
  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;
  margin-top: min(1.66666667vw, 32px);
  position: relative
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-c .btn {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-c .btn {
    margin-top: 16px
  }
}
.index .index-box10 .wrap-box .wrap-c .btn em {
  position: relative;
  z-index: 1
}
.index .index-box10 .wrap-box .wrap-c .btn::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.index .index-box10 .wrap-box .wrap-c .btn:hover::before {
  width: 100%;
  left: 0px
}
.index .index-box10 .wrap-box .wrap-ri {
  width: 33.5%;
  height: 373px;
  background: no-repeat center;
  background-size: cover
}
.index .index-box10 .wrap-box .wrap-ri .text-box {
  padding-top: min(2.60416667vw, 50px);
  padding-left: min(2.39583333vw, 46px)
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box {
    padding-top: 25px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box {
    padding-left: 23px
  }
}
.index .index-box10 .wrap-box .wrap-ri .text-box .name {
  position: relative;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
  padding-top: min(2.08333333vw, 40px)
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .name {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .name {
    padding-top: 20px
  }
}
.index .index-box10 .wrap-box .wrap-ri .text-box .name::before {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #0c2f71;
  position: absolute;
  top: 0;
  left: 0
}
.index .index-box10 .wrap-box .wrap-ri .text-box .text {
  font-size: 30px;
  color: #0c2f71;
  line-height: 1;
  font-weight: bold;
  margin: min(.52083333vw, 10px) 0 min(2.60416667vw, 50px)
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .text {
    font-size: 26px
  }
}
@media (max-width:1470px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .text {
    font-size: 22px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .text {
    font-size: 20px
  }
}
@media (max-width:768px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .text {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .text {
    margin: 5px 0 25px
  }
}
.index .index-box10 .wrap-box .wrap-ri .text-box .more {
  height: 48px;
  background-color: #0c2f71;
  border-radius: 24px;
  padding: 0 27px;
  font-size: 15px;
  color: white;
  line-height: 48px;
  position: relative;
  overflow: hidden
}
@media (max-width:1600px) {
  .index .index-box10 .wrap-box .wrap-ri .text-box .more {
    font-size: 14px
  }
}
.index .index-box10 .wrap-box .wrap-ri .text-box .more em {
  position: relative;
  z-index: 1;
  background: url(../image/index10-kefu-ico.png) no-repeat left center;
  background-size: 17px 19px;
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.index .index-box10 .wrap-box .wrap-ri .text-box .more::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.index .index-box10 .wrap-box .wrap-ri .text-box .more:hover::before {
  width: 100%;
  left: 0px
}
@media (max-width:1200px) {
  .index .index-box10 {
    padding: 50px 0
  }
  .index .index-box10 .wrap-box .list {
    width: 34%
  }
  .index .index-box10 .wrap-box .wrap-c {
    width: 62%
  }
  .index .index-box10 .wrap-box .wrap-c .name em {
    display: block
  }
  .index .index-box10 .wrap-box .wrap-ri {
    display: none
  }
}
@media (max-width:768px) {
  .index .index-box10 .wrap-box {
    display: block;
    padding: 10px
  }
  .index .index-box10 .wrap-box .list {
    width: 100%
  }
  .index .index-box10 .wrap-box .wrap-c {
    width: 100%;
    padding: 0;
    border: none;
    margin-top: 10px
  }
  .index .index-box10 .wrap-box .wrap-c .form-control, .index .index-box10 .wrap-box .wrap-c .btn {
    height: 45px
  }
  .index .index-box10 .wrap-box .wrap-ri {
    display: block;
    width: 100%;
    height: 200px;
    margin-top: 30px
  }
}
.about .about-box1 {
  padding: min(1.27083333vw, 82px) 0 min(1.72916667vw, 110px)
}
@media (max-width:1024px) {
  .about .about-box1 {
    padding: 41px 0 55px 0
  }
}
.about .about-box1 .list {
  margin-top: min(3.22916667vw, 62px)
}
@media (max-width:1024px) {
  .about .about-box1 .list {
    margin-top: 31px
  }
}
.about .about-box1 .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: min(3.38541667vw, 65px)
}
@media (max-width:1024px) {
  .about .about-box1 .list .item {
    margin-bottom: 32.5px
  }
}
.about .about-box1 .list .item:last-child {
  margin-bottom: 0
}
.about .about-box1 .list .item .img {
  width: 46.7%;
  overflow: hidden
}
.about .about-box1 .list .item .img .pb {
  padding-bottom: 60.5%
}
.about .about-box1 .list .item .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.about .about-box1 .list .item .item-text {
  width: 47.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.about .about-box1 .list .item .item-text .ico img {
  height: 60px
}
.about .about-box1 .list .item .item-text .name {
  font-size: 30px;
  color: #222222;
  line-height: 1.4;
  font-weight: bold;
  margin-top: min(1.5625vw, 30px)
}
@media (max-width:1600px) {
  .about .about-box1 .list .item .item-text .name {
    font-size: 26px
  }
}
@media (max-width:1470px) {
  .about .about-box1 .list .item .item-text .name {
    font-size: 22px
  }
}
@media (max-width:1024px) {
  .about .about-box1 .list .item .item-text .name {
    font-size: 20px
  }
}
@media (max-width:768px) {
  .about .about-box1 .list .item .item-text .name {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .about .about-box1 .list .item .item-text .name {
    margin-top: 15px
  }
}
.about .about-box1 .list .item .item-text .text {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  padding-top: min(1.45833333vw, 28px);
  margin-top: min(1.30208333vw, 25px);
  border-top: 1px solid #e9e9e9
}
@media (max-width:1600px) {
  .about .about-box1 .list .item .item-text .text {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .about .about-box1 .list .item .item-text .text {
    padding-top: 14px
  }
}
@media (max-width:1024px) {
  .about .about-box1 .list .item .item-text .text {
    margin-top: 12.5px
  }
}
.about .about-box1 .list .item:nth-child(even) .img {
  order: 2
}
.about .about-box1 .list .item:nth-child(even) .item-text {
  order: 1
}
.about .about-box1 .list .item:hover .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
@media (max-width:1200px) {
  .about .about-box1 {
    padding: 50px 0
  }
  .about .about-box1 .list .item .item-text .ico img {
    height: 34px
  }
  .about .about-box1 .list .item .item-text .name {
    font-size: 16px
  }
}
@media (max-width:990px) {
  .about .about-box1 .list .item {
    display: block;
    margin-bottom: 20px
  }
  .about .about-box1 .list .item .item-text {
    width: 100%;
    margin-top: 10px
  }
}
@media (max-width:768px) {
  .about .about-box1 .list .item .img {
    width: 100%
  }
}
.about .about-box2 {
  background: url(../image/about-box2-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(4.42708333vw, 85px) 0 min(4.42708333vw, 85px)
}
@media (max-width:1024px) {
  .about .about-box2 {
    padding: 42.5px 0 42.5px 0
  }
}
.about .about-box2 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  margin-top: min(2.34375vw, 45px)
}
@media (max-width:1024px) {
  .about .about-box2 .list {
    margin-top: 22.5px
  }
}
.about .about-box2 .list .item {
  width: 33.33333333%;
  padding: 0 14px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .about .about-box2 .list .item {
    margin-bottom: 13.5px
  }
}
.about .about-box2 .list .item .item-box {
  background-color: white;
  display: block;
  padding: min(2.86458333vw, 55px) 0 min(3.02083333vw, 58px);
  padding-right: min(2.08333333vw, 40px);
  padding-left: min(2.08333333vw, 40px)
}
@media (max-width:1024px) {
  .about .about-box2 .list .item .item-box {
    padding: 27.5px 0 29px 0
  }
}
@media (max-width:1024px) {
  .about .about-box2 .list .item .item-box {
    padding-right: 20px
  }
}
@media (max-width:1024px) {
  .about .about-box2 .list .item .item-box {
    padding-left: 20px
  }
}
.about .about-box2 .list .item .item-box .icon {
  width: 55px;
  height: 56px;
  overflow: hidden
}
.about .about-box2 .list .item .item-box .icon img {
  width: 55px;
  height: 56px;
  -webkit-transition: all .3s;
  transition: all .3s
}
.about .about-box2 .list .item .item-box .text-box .name {
  font-size: 32px;
  color: #333333;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: min(2.55208333vw, 49px) 0 min(.52083333vw, 10px)
}
@media (max-width:1600px) {
  .about .about-box2 .list .item .item-box .text-box .name {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .about .about-box2 .list .item .item-box .text-box .name {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .about .about-box2 .list .item .item-box .text-box .name {
    font-size: 22px
  }
}
@media (max-width:768px) {
  .about .about-box2 .list .item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .about .about-box2 .list .item .item-box .text-box .name {
    margin: 24.5px 0 5px
  }
}
.about .about-box2 .list .item .item-box .text-box .text {
  font-size: 18px;
  color: #999999;
  line-height: 1.6;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .about .about-box2 .list .item .item-box .text-box .text {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .about .about-box2 .list .item .item-box .text-box .text {
    font-size: 15px
  }
}
.about .about-box2 .list .item:hover .item-box {
  background: url(../image/about-box2-item-bg.jpg) no-repeat center;
  background-size: cover
}
.about .about-box2 .list .item:hover .item-box .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}
.about .about-box2 .list .item:hover .item-box .text-box .name, .about .about-box2 .list .item:hover .item-box .text-box .text {
  color: white
}
@media (max-width:1200px) {
  .about .about-box2 {
    padding: 50px 0
  }
  .about .about-box2 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .about .about-box2 .list .item {
    padding: 0 7px
  }
  .about .about-box2 .list .item .item-box .icon {
    width: 33px;
    height: 34px
  }
  .about .about-box2 .list .item .item-box .icon img {
    width: 33px;
    height: 34px
  }
  .about .about-box2 .list .item .item-box .text-box .name {
    font-size: 16px;
    margin: 30px 0 10px
  }
  .about .about-box2 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}
@media (max-width:768px) {
  .about .about-box2 .list .item {
    width: 100%
  }
}
.about .about-box3 {
  padding-top: min(4.6875vw, 90px);
  overflow: hidden
}
@media (max-width:1024px) {
  .about .about-box3 {
    padding-top: 45px
  }
}
.about .about-box3 .slide-box {
  margin-top: min(3.02083333vw, 58px);
  position: relative
}
@media (max-width:1024px) {
  .about .about-box3 .slide-box {
    margin-top: 29px
  }
}
.about .about-box3 .slide-box .swiper-button-ico {
  width: 60px;
  height: 60px;
  background: no-repeat center rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-top: -60px;
  transition: all .3s;
  -webkit-transition: all .3s
}
.about .about-box3 .slide-box .swiper-button-ico.swiper-button-prev {
  left: -38px;
  background-image: url(../image/prev2.png)
}
.about .about-box3 .slide-box .swiper-button-ico.swiper-button-next {
  right: -38px;
  background-image: url(../image/next2.png)
}
.about .about-box3 .slide-box .swiper-button-ico:hover {
  background-color: #0c2f71
}
.about .about-box3 .slide-box .about-slide3 {
  padding-bottom: 60px
}
.about .about-box3 .slide-box .about-slide3 .swiper-slide {
  height: auto
}
.about .about-box3 .slide-box .about-slide3 .item {
  height: 100%;
  display: block;
  background-color: #f0f0f0;
  padding: 30px 28px 26px 24px;
  text-align: center
}
.about .about-box3 .slide-box .about-slide3 .item .name {
  font-size: 18px;
  color: #333333;
  line-height: 1.4;
  margin-top: min(1.14583333vw, 22px)
}
@media (max-width:1600px) {
  .about .about-box3 .slide-box .about-slide3 .item .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .about .about-box3 .slide-box .about-slide3 .item .name {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  .about .about-box3 .slide-box .about-slide3 .item .name {
    margin-top: 11px
  }
}
.about .about-box3 .slide-box .about-slide3 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  opacity: 0
}
.about .about-box3 .slide-box .about-slide3 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.about .about-box3 .slide-box .about-slide3 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
@media (max-width:1200px) {
  .about .about-box3 {
    padding-top: 50px
  }
  .about .about-box3 .slide-box .swiper-button-ico {
    display: none
  }
  .about .about-box3 .slide-box .about-slide3 .item {
    padding: 20px
  }
  .about .about-box3 .slide-box .about-slide3 .item .name {
    font-size: 14px
  }
  .about .about-box3 .slide-box .about-slide3 .swiper-pagination {
    opacity: 1
  }
}
@media (max-width:768px) {
  .about .about-box3 .slide-box .about-slide3 .item {
    padding: 20px 10px
  }
}
.about .about-box4 {
  background: url(../image/about-box4-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(2.86458333vw, 55px) 0 min(2.86458333vw, 55px)
}
@media (max-width:1024px) {
  .about .about-box4 {
    padding: 27.5px 0 27.5px 0
  }
}
.about .about-box4 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.about .about-box4 .wrap-box .wrap-le .name {
  font-size: 42px;
  color: white;
  line-height: 1.4
}
@media (max-width:1600px) {
  .about .about-box4 .wrap-box .wrap-le .name {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .about .about-box4 .wrap-box .wrap-le .name {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .about .about-box4 .wrap-box .wrap-le .name {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .about .about-box4 .wrap-box .wrap-le .name {
    font-size: 24px
  }
}
.about .about-box4 .wrap-box .wrap-le ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: min(.72916667vw, 14px)
}
@media (max-width:1024px) {
  .about .about-box4 .wrap-box .wrap-le ul {
    margin-top: 7px
  }
}
.about .about-box4 .wrap-box .wrap-le ul li {
  font-size: 20px;
  color: white;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  padding: 0 14px;
  margin-right: -8px
}
@media (max-width:1600px) {
  .about .about-box4 .wrap-box .wrap-le ul li {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .about .about-box4 .wrap-box .wrap-le ul li {
    font-size: 16px
  }
}
.about .about-box4 .wrap-box .wrap-ri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.about .about-box4 .wrap-box .text-box {
  padding-left: 62px;
  background: url(../image/float-call-ico.png) no-repeat left center;
  background-size: 48px 48px;
  min-height: 48px
}
.about .about-box4 .wrap-box .text-box .name {
  font-size: 16px;
  color: white
}
@media (max-width:1600px) {
  .about .about-box4 .wrap-box .text-box .name {
    font-size: 14px
  }
}
.about .about-box4 .wrap-box .text-box .text {
  font-size: 28px;
  color: white;
  line-height: 1;
  font-weight: bold;
  margin-top: min(.41666667vw, 8px)
}
@media (max-width:1600px) {
  .about .about-box4 .wrap-box .text-box .text {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .about .about-box4 .wrap-box .text-box .text {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .about .about-box4 .wrap-box .text-box .text {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .about .about-box4 .wrap-box .text-box .text {
    margin-top: 4px
  }
}
@media (max-width:768px) {
  .about .about-box4 .wrap-box {
    display: block
  }
  .about .about-box4 .wrap-box .wrap-le ul li {
    font-size: 14px
  }
  .about .about-box4 .wrap-box .wrap-ri {
    display: none
  }
}
.about .about-box5 {
  background: url(../image/about-box5-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(6.25vw, 120px) 0 min(3.33333333vw, 64px)
}
@media (max-width:1024px) {
  .about .about-box5 {
    padding: 60px 0 32px 0
  }
}
.about .about-box5 .wrap-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px
}
.about .about-box5 .wrap-box .div1 {
  grid-area: 1 / 1 / 3 / 3
}
.about .about-box5 .wrap-box .div1.item .item-box .img .pb {
  padding-bottom: 75%
}
.about .about-box5 .wrap-box .div1.item .item-box .text-box .name {
  font-size: 28px
}
@media (max-width:1600px) {
  .about .about-box5 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .about .about-box5 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .about .about-box5 .wrap-box .div1.item .item-box .text-box .name {
    font-size: 18px
  }
}
.about .about-box5 .wrap-box .div2 {
  grid-area: 1 / 3 / 2 / 4
}
.about .about-box5 .wrap-box .div3 {
  grid-area: 1 / 4 / 2 / 5
}
.about .about-box5 .wrap-box .div4 {
  grid-area: 2 / 3 / 3 / 4
}
.about .about-box5 .wrap-box .div5 {
  grid-area: 2 / 4 / 3 / 5
}
.about .about-box5 .wrap-box .item .item-box {
  position: relative;
  display: block;
  overflow: hidden
}
.about .about-box5 .wrap-box .item .item-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/index6-item-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1
}
.about .about-box5 .wrap-box .item .item-box .img {
  overflow: hidden
}
.about .about-box5 .wrap-box .item .item-box .img .pb {
  padding-bottom: 74.5%
}
.about .about-box5 .wrap-box .item .item-box .text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 min(1.5625vw, 30px) 0 min(1.5625vw, 30px);
  margin-bottom: min(1.14583333vw, 22px)
}
@media (max-width:1024px) {
  .about .about-box5 .wrap-box .item .item-box .text-box {
    padding: 0 15px 0 15px
  }
}
@media (max-width:1024px) {
  .about .about-box5 .wrap-box .item .item-box .text-box {
    margin-bottom: 11px
  }
}
.about .about-box5 .wrap-box .item .item-box .text-box .name {
  font-size: 18px;
  color: #333333;
  line-height: 1.4
}
@media (max-width:1600px) {
  .about .about-box5 .wrap-box .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .about .about-box5 .wrap-box .item .item-box .text-box .name {
    font-size: 15px
  }
}
.about .about-box5 .wrap-box .item .item-box .text-box .label {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  margin-top: min(.20833333vw, 4px)
}
@media (max-width:1024px) {
  .about .about-box5 .wrap-box .item .item-box .text-box .label {
    margin-top: 2px
  }
}
.about .about-box5 .wrap-box .item .item-box .text-box .text {
  font-size: 16px;
  color: #666666;
  line-height: 1.4;
  margin-top: min(1.25vw, 24px);
  height: 0;
  opacity: 0
}
@media (max-width:1600px) {
  .about .about-box5 .wrap-box .item .item-box .text-box .text {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .about .about-box5 .wrap-box .item .item-box .text-box .text {
    margin-top: 12px
  }
}
.about .about-box5 .wrap-box .item:hover .item-box::before {
  opacity: 1
}
.about .about-box5 .wrap-box .item:hover .item-box .text-box .name, .about .about-box5 .wrap-box .item:hover .item-box .text-box .label {
  -webkit-animation: fadeInUpsb .5s linear 1 forwards;
  animation: fadeInUpsb .5s linear 1 forwards
}
.about .about-box5 .wrap-box .item:hover .item-box .text-box .text {
  height: auto;
  -webkit-animation: fadeInUp .5s linear 1 forwards;
  animation: fadeInUp .5s linear 1 forwards
}
.about .about-box5 .slide-box {
  margin-top: min(2.86458333vw, 55px)
}
@media (max-width:1024px) {
  .about .about-box5 .slide-box {
    margin-top: 27.5px
  }
}
.about .about-box5 .slide-box .index-slide6 {
  padding-bottom: min(5.52083333vw, 106px)
}
@media (max-width:1024px) {
  .about .about-box5 .slide-box .index-slide6 {
    padding-bottom: 53px
  }
}
.about .about-box5 .slide-box .index-slide6 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 0;
  margin-bottom: min(1.45833333vw, 28px)
}
@media (max-width:1024px) {
  .about .about-box5 .slide-box .index-slide6 .swiper-pagination {
    margin-bottom: 14px
  }
}
.about .about-box5 .slide-box .index-slide6 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.about .about-box5 .slide-box .index-slide6 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
.about .about-box5 .slide-box .swiper-button-ico {
  display: none
}
@media (max-width:1200px) {
  .about .about-box5 {
    padding: 50px 0 0
  }
}
@media (max-width:768px) {
  .about .about-box5 {
    padding: 50px 0 0
  }
  .about .about-box5 .wrap-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-left: -7px;
    margin-right: -7px
  }
  .about .about-box5 .wrap-box .item {
    margin-top: 10px;
    width: 50%;
    padding: 0 7px
  }
  .about .about-box5 .wrap-box .item .item-box .text-box {
    padding: 0 10px
  }
  .about .about-box5 .wrap-box .item .item-box .text-box .text {
    display: none
  }
  .about .about-box5 .wrap-box .item:last-child {
    display: none
  }
}
.about .about-box6 {
  padding: min(3.90625vw, 75px) 0 min(3.22916667vw, 62px)
}
@media (max-width:1024px) {
  .about .about-box6 {
    padding: 37.5px 0 31px 0
  }
}
.about .about-box6 .slide-box {
  margin-top: min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .about .about-box6 .slide-box {
    margin-top: 30px
  }
}
.about .about-box6 .slide-box .about-slide6 {
  padding-bottom: min(4.79166667vw, 92px)
}
@media (max-width:1024px) {
  .about .about-box6 .slide-box .about-slide6 {
    padding-bottom: 46px
  }
}
.about .about-box6 .slide-box .about-slide6 .img {
  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;
  overflow: hidden
}
.about .about-box6 .slide-box .about-slide6 .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 0;
  margin-bottom: min(.72916667vw, 14px)
}
@media (max-width:1024px) {
  .about .about-box6 .slide-box .about-slide6 .swiper-pagination {
    margin-bottom: 7px
  }
}
.about .about-box6 .slide-box .about-slide6 .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.about .about-box6 .slide-box .about-slide6 .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
.about .about-box6 .slide-box .swiper-button-ico {
  display: none
}
.about .about-box7 {
  background: url(../image/about-box7-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(4.42708333vw, 85px) 0 min(2.91666667vw, 56px)
}
@media (max-width:1024px) {
  .about .about-box7 {
    padding: 42.5px 0 28px 0
  }
}
.about .about-box7 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -13px;
  margin-right: -13px;
  margin-top: min(2.70833333vw, 52px)
}
@media (max-width:1024px) {
  .about .about-box7 .list {
    margin-top: 26px
  }
}
.about .about-box7 .list .item {
  width: 16.666667%;
  padding: 0 13px;
  margin-bottom: 26px
}
.about .about-box7 .list .item .img {
  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;
  height: 106px;
  background-color: white;
  border: 1px solid #f2f2f2;
  overflow: hidden;
  transition: all .3s;
  -webkit-transition: all .3s
}
.about .about-box7 .list .item .img:hover {
  box-shadow: 0 3px 27px rgba(0, 0, 0, 0.1)
}
@media (max-width:1200px) {
  .about .about-box7 {
    padding: 50px 0
  }
  .about .about-box7 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .about .about-box7 .list .item {
    width: 25%;
    padding: 0 7px;
    margin-bottom: 14px
  }
}

.service-box1{    padding-bottom: min(5.98958333vw, 115px);}
@media (max-width:768px) {
  .about .about-box7 .list .item {
    width: 50%
  }
}

@media (max-width:1024px) {
  .service .service-box1 {
    padding: 41px 0 40px 0
  }
}

@media (max-width:1024px) {
  .service .service-box1 .list {
    margin-top: 31px
  }
}
.service .service-box1 .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #eeeeee
}
.service .service-box1 .list .item .img {
  width: 50%;
  overflow: hidden
}
.service .service-box1 .list .item .img .pb {
  padding-bottom: 60.5%
}
.service .service-box1 .list .item .item-text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: no-repeat center;
  background-size: cover;
  padding: 0 min(2.60416667vw, 50px) 0 min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .service .service-box1 .list .item .item-text {
    padding: 0 25px 0 30px
  }
}
.service .service-box1 .list .item .item-text .name {
  font-size: 40px;
  color: #222222;
  line-height: 1.4;
  position: relative;
  padding-bottom: min(2.1875vw, 42px);
  margin-bottom: min(2.08333333vw, 40px)
}
@media (max-width:1600px) {
  .service .service-box1 .list .item .item-text .name {
    font-size: 38px
  }
}
@media (max-width:1470px) {
  .service .service-box1 .list .item .item-text .name {
    font-size: 33px
  }
}
@media (max-width:1024px) {
  .service .service-box1 .list .item .item-text .name {
    font-size: 29px
  }
}
@media (max-width:768px) {
  .service .service-box1 .list .item .item-text .name {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .service .service-box1 .list .item .item-text .name {
    padding-bottom: 21px
  }
}
@media (max-width:1024px) {
  .service .service-box1 .list .item .item-text .name {
    margin-bottom: 20px
  }
}
.service .service-box1 .list .item .item-text .name::before {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #0c2f71;
  position: absolute;
  left: 0;
  bottom: 0
}
.service .service-box1 .list .item .item-text .text p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6
}
@media (max-width:1600px) {
  .service .service-box1 .list .item .item-text .text p {
    font-size: 14px
  }
}
.service .service-box1 .list .item:nth-child(even) .img {
  order: 2
}
.service .service-box1 .list .item:nth-child(even) .item-text {
  order: 1
}
@media (max-width:1200px) {
  .service .service-box1 {
    padding: 50px 0
  }
  .service .service-box1 .list .item .item-text .name {
    font-size: 16px
  }
}
@media (max-width:990px) {
  .service .service-box1 .list .item {
    display: block;
    margin-bottom: 20px
  }
  .service .service-box1 .list .item .item-text {
    width: 100%;
    margin-top: 10px;
    padding-bottom: 20px
  }
}
@media (max-width:768px) {
  .service .service-box1 .list .item .img {
    width: 100%
  }
  .service .service-box1 .list .item .item-text {
    padding: 0 14px 20px
  }
}.service .service-box2 {
  padding-bottom: min(5.98958333vw, 115px)
}
@media (max-width:1024px) {
  .service .service-box2 {
    padding-bottom: 57.5px
  }
}
.service .service-box2 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .service .service-box2 .list {
    margin-top: 25px
  }
}
.service .service-box2 .list .item {
  width: 16.6666667%;
  padding: 0 10px
}
.service .service-box2 .list .item .item-box {
  position: relative;
  display: block
}
.service .service-box2 .list .item .item-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/service-box2-item-bg.png) no-repeat center bottom;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1
}

/* 修改开始：为图片容器添加边框和溢出控制 */
.service .service-box2 .list .item .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px);

}
@media (max-width:1024px) {
  .service .service-box2 .list .item .item-box .img {
    margin-bottom: 13.5px
  }
}
.service .service-box2 .list .item .item-box .img .pb {
  padding-bottom: 160%;
  overflow: hidden; /* 新增：确保内部图片缩放时不会溢出 */
  position: relative; /* 新增：为绝对定位的图片提供参考 */
}
.service .service-box2 .list .item .item-box .img .pb img {

  width: 100%;
  height: 100%;
  object-fit: cover; /* 新增：保持图片比例并填充容器 */
  -webkit-transition: all .3s;
  transition: all .3s
}
/* 修改结束 */
.service .service-box3 {
  
    padding: min(5.52083333vw, 106px) 0 min(5.20833333vw, 100px);
}
.service .service-box2 .list .item .item-box .text-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 min(.9375vw, 18px) 0 min(.9375vw, 18px);
  padding-bottom: min(1.04166667vw, 20px);
  z-index: 2
}
@media (max-width:1024px) {
  .service .service-box2 .list .item .item-box .text-box {
    padding: 0 9px 0 9px
  }
}
@media (max-width:1024px) {
  .service .service-box2 .list .item .item-box .text-box {
    padding-bottom: 10px
  }
}
.service .service-box2 .list .item .item-box .text-box .name {
  font-size: 22px;
  color: white;
  line-height: 1.4;
  font-weight: bold;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .service .service-box2 .list .item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1470px) {
  .service .service-box2 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
.service .service-box2 .list .item .item-box .text-box .text {
  font-size: 16px;
  color: white;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4
}
@media (max-width:1600px) {
  .service .service-box2 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}

.service .service-box2 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.service .service-box2 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
@media (max-width:1200px) {
  .service .service-box2 {
    padding: 0 0 40px
  }
  .service .service-box2 .list {
    margin-left: -7px;
    margin-right: -7px;
    width: 72%;
    margin: auto;
    margin-top: 30px
  }
  .service .service-box2 .list .item {
    padding: 0 7px;
    width: 33.3333%
  }
}
@media (max-width:768px) {
  .service .service-box2 .list {
    width: auto;
    margin: auto;
    margin-left: -7px;
    margin-right: -7px;
    margin-top: 30px
  }
  .service .service-box2 .list .item {
    width: 50%
  }
}
.service .service-box3 {
  background: url(../image/service-box3-bg.jpg) no-repeat center top;
}
@media (max-width:1024px) {
  .service .service-box3 {
    padding: 53px 0 50px 0
  }
}
.service .service-box3 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .service .service-box3 .list {
    margin-top: 25px
  }
}
.service .service-box3 .list .item {
  width: 33.33333333%;
  padding: 0 14px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .service .service-box3 .list .item {
    margin-bottom: 13.5px
  }
}
.service .service-box3 .list .item .item-box {
  height: 100%;
  background-color: #eeeeee;
  display: block;
  padding: min(3.125vw, 60px) 0 min(3.125vw, 60px);
  padding-right: min(1.04166667vw, 20px);
  padding-left: min(1.04166667vw, 20px);
  text-align: center
}
@media (max-width:1024px) {
  .service .service-box3 .list .item .item-box {
    padding: 30px 0 30px 0
  }
}
@media (max-width:1024px) {
  .service .service-box3 .list .item .item-box {
    padding-right: 10px
  }
}
@media (max-width:1024px) {
  .service .service-box3 .list .item .item-box {
    padding-left: 10px
  }
}
.service .service-box3 .list .item .item-box .img {
  width: 73px;
  height: 65px;
  overflow: hidden;
  margin: auto
}
.service .service-box3 .list .item .item-box .img img {
  width: 73px;
  height: 65px;
  -webkit-transition: all .3s;
  transition: all .3s
}
.service .service-box3 .list .item .item-box .text-box .name {
  font-size: 30px;
  color: #333333;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: min(1.5625vw, 30px) 0 min(.625vw, 12px)
}
@media (max-width:1600px) {
  .service .service-box3 .list .item .item-box .text-box .name {
    font-size: 26px
  }
}
@media (max-width:1470px) {
  .service .service-box3 .list .item .item-box .text-box .name {
    font-size: 22px
  }
}
@media (max-width:1024px) {
  .service .service-box3 .list .item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:768px) {
  .service .service-box3 .list .item .item-box .text-box .name {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .service .service-box3 .list .item .item-box .text-box .name {
    margin: 15px 0 6px
  }
}
.service .service-box3 .list .item .item-box .text-box .text {
  font-size: 16px;
  color: #777777;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .service .service-box3 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}
.service .service-box3 .list .item:hover .item-box {
  background: #0c2f71
}
.service .service-box3 .list .item:hover .item-box .img img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}
.service .service-box3 .list .item:hover .item-box .text-box .name, .service .service-box3 .list .item:hover .item-box .text-box .text {
  color: white
}
@media (max-width:1200px) {
  .service .service-box3 {
    padding: 50px 0;
    background-size: cover
  }
  .service .service-box3 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .service .service-box3 .list .item {
    padding: 0 7px
  }
  .service .service-box3 .list .item .item-box .img {
    width: 38px;
    height: 34px
  }
  .service .service-box3 .list .item .item-box .img img {
    width: 38px;
    height: 34px
  }
}
@media (max-width:768px) {
  .service .service-box3 .list .item {
    width: 50%
  }
}
.service .service-box4 {
  background-color: #eeeeee;
  padding: min(4.6875vw, 90px) 0 min(4.27083333vw, 82px)
}
@media (max-width:1024px) {
  .service .service-box4 {
    padding: 45px 0 41px 0
  }
}
.service .service-box4 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .service .service-box4 .list {
    margin-top: 25px
  }
}
.service .service-box4 .list .item {
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .service .service-box4 .list .item {
    margin-bottom: 13.5px
  }
}
.service .service-box4 .list .item .item-box {
  display: block
}
.service .service-box4 .list .item .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .service .service-box4 .list .item .item-box .img {
    margin-bottom: 13.5px
  }
}
.service .service-box4 .list .item .item-box .img .pb {
  padding-bottom: 70%
}
.service .service-box4 .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.service .service-box4 .list .item .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(12, 47, 113, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.service .service-box4 .list .item .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.service .service-box4 .list .item .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
	line-height: 20px;
}
.service .service-box4 .list .item .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .service .service-box4 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .service .service-box4 .list .item .item-box .text-box .name {
    font-size: 15px
  }
}
.service .service-box4 .list .item .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.service .service-box4 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.service .service-box4 .list .item:hover .item-box .img .pb .zz {
  opacity: 1
}
.service .service-box4 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
.service .service-box4 .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .service .service-box4 .more {
    margin-top: 10px
  }
}
.service .service-box4 .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .service .service-box4 .more a {
    font-size: 14px
  }
}
.service .service-box4 .more a span {
  position: relative;
  z-index: 1
}
.service .service-box4 .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.service .service-box4 .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .service .service-box4 .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .service .service-box4 .more a {
    width: 125px !important;
    height: 35px !important
  }
  .service .service-box4 .more a i {
    display: none
  }
}
.service .service-box4 .more a:hover::before {
  width: 100%;
  left: 0px
}
@media (max-width:1200px) {
  .service .service-box4 {
    padding: 50px 0
  }
  .service .service-box4 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .service .service-box4 .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .service .service-box4 .list .item {
    width: 50%
  }
}
.case .case-box1 {
  padding: min(4.27083333vw, 82px) 0 min(4.47916667vw, 86px)
}
@media (max-width:1024px) {
  .case .case-box1 {
    padding: 41px 0 43px 0
  }
}
.case .case-box1 .tabBox a {
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-left: min(1.30208333vw, 25px);
  margin-left: min(1.25vw, 24px);
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .case .case-box1 .tabBox a {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .case .case-box1 .tabBox a {
    padding-left: 12.5px
  }
}
@media (max-width:1024px) {
  .case .case-box1 .tabBox a {
    margin-left: 12px
  }
}
.case .case-box1 .tabBox a::before {
  content: '/';
  font-size: 16px;
  color: #e6e6e6;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto
}
@media (max-width:1600px) {
  .case .case-box1 .tabBox a::before {
    font-size: 14px
  }
}
.case .case-box1 .tabBox a:first-child {
  padding: 0;
  margin: 0
}
.case .case-box1 .tabBox a:first-child::before {
  display: none
}
.case .case-box1 .tabBox a:hover {
  color: #0c2f71
}
.case .case-box1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(3.75vw, 72px)
}
@media (max-width:1024px) {
  .case .case-box1 .list {
    margin-top: 36px
  }
}
.case .case-box1 .list .item {
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .case .case-box1 .list .item {
    margin-bottom: 13.5px
  }
}
.case .case-box1 .list .item .item-box {
  display: block
}
.case .case-box1 .list .item .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .case .case-box1 .list .item .item-box .img {
    margin-bottom: 13.5px
  }
}
.case .case-box1 .list .item .item-box .img .pb {
  padding-bottom: 70%
}
.case .case-box1 .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.case .case-box1 .list .item .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(204, 0, 0, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.case .case-box1 .list .item .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.case .case-box1 .list .item .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0
}
.case .case-box1 .list .item .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .case .case-box1 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .case .case-box1 .list .item .item-box .text-box .name {
    font-size: 15px
  }
}
.case .case-box1 .list .item .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.case .case-box1 .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.case .case-box1 .list .item:hover .item-box .img .pb .zz {
  opacity: 1
}
.case .case-box1 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
.case .case-box1 .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .case .case-box1 .more {
    margin-top: 10px
  }
}
.case .case-box1 .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .case .case-box1 .more a {
    font-size: 14px
  }
}
.case .case-box1 .more a span {
  position: relative;
  z-index: 1
}
.case .case-box1 .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.case .case-box1 .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .case .case-box1 .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .case .case-box1 .more a {
    width: 125px !important;
    height: 35px !important
  }
  .case .case-box1 .more a i {
    display: none
  }
}
@media (max-width:1200px) {
  .case .case-box1 {
    padding: 50px 0
  }
  .case .case-box1 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .case .case-box1 .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .case .case-box1 .page-title .wrap-box {
    display: block
  }
  .case .case-box1 .page-title .wrap-box .tab-name {
    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;
    margin-top: 10px
  }
  .case .case-box1 .list .item {
    width: 50%
  }
  .case .case-box1 .layui-laypage a, .case .case-box1 .layui-laypage span {
    font-size: 14px;
    width: 42px;
    height: 40px;
    line-height: 40px
  }
}
.case-d .case-d-box {
  padding-top: min(4.42708333vw, 85px)
}
@media (max-width:1024px) {
  .case-d .case-d-box {
    padding-top: 42.5px
  }
}
.case-d .case-d-box .title .name {
  font-size: 40px;
  color: #222222;
  line-height: 1.4
}
@media (max-width:1600px) {
  .case-d .case-d-box .title .name {
    font-size: 38px
  }
}
@media (max-width:1470px) {
  .case-d .case-d-box .title .name {
    font-size: 33px
  }
}
@media (max-width:1024px) {
  .case-d .case-d-box .title .name {
    font-size: 29px
  }
}
@media (max-width:768px) {
  .case-d .case-d-box .title .name {
    font-size: 24px
  }
}
.case-d .case-d-box .title .text {
  font-size: 16px;
  color: #555555;
  line-height: 1.4
}
@media (max-width:1600px) {
  .case-d .case-d-box .title .text {
    font-size: 14px
  }
}
.case-d .case-d-box .information-box {
  margin: min(2.60416667vw, 50px) 0 min(4.16666667vw, 80px)
}
@media (max-width:1024px) {
  .case-d .case-d-box .information-box {
    margin: 25px 0 40px
  }
}
.case-d .case-d-box .information-box .item {
  display: inline-block;
  font-size: 20px;
  color: #555555;
  margin-right: min(7.8125vw, 150px);
  margin-bottom: 10px
}
@media (max-width:1600px) {
  .case-d .case-d-box .information-box .item {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .case-d .case-d-box .information-box .item {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .case-d .case-d-box .information-box .item {
    margin-right: 75px
  }
}
.case-d .case-d-box .information-box .item em {
  color: #222222;
  font-weight: bold
}
.case-d .case-d-box .information-box .item em img {
  height: 22px;
  margin-top: -2px;
  margin-right: 9px
}
.case-d .case-d-box .information-box .item:last-child {
  margin-right: 0
}
.case-d .case-d-box .item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.case-d .case-d-box .item-name .img img {
  height: 33px;
  margin-right: 4px
}
.case-d .case-d-box .item-name .textbox .title {
  font-size: 30px;
  color: #000000;
  line-height: 1.4
}
@media (max-width:1600px) {
  .case-d .case-d-box .item-name .textbox .title {
    font-size: 26px
  }
}
@media (max-width:1470px) {
  .case-d .case-d-box .item-name .textbox .title {
    font-size: 22px
  }
}
@media (max-width:1024px) {
  .case-d .case-d-box .item-name .textbox .title {
    font-size: 20px
  }
}
@media (max-width:768px) {
  .case-d .case-d-box .item-name .textbox .title {
    font-size: 18px
  }
}
.case-d .case-d-box .item-name .textbox .text {
  font-size: 16px;
  color: #999999;
  line-height: 1.4
}
@media (max-width:1600px) {
  .case-d .case-d-box .item-name .textbox .text {
    font-size: 14px
  }
}
.case-d .case-d-box .information {
  padding-top: min(.83333333vw, 16px);
  border-top: 1px solid #e9e9e9;
  margin: min(.83333333vw, 16px) 0 min(4.58333333vw, 88px)
}
@media (max-width:1024px) {
  .case-d .case-d-box .information {
    padding-top: 8px
  }
}
@media (max-width:1024px) {
  .case-d .case-d-box .information {
    margin: 8px 0 44px
  }
}
.case-d .case-d-box .information p {
  font-size: 16px;
  color: #555555;
  line-height: 1.6
}
@media (max-width:1600px) {
  .case-d .case-d-box .information p {
    font-size: 14px
  }
}
.case-d .case-d-box .image {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  padding: min(2.60416667vw, 50px) 0 min(5.46875vw, 105px);
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .case-d .case-d-box .image {
    padding: 25px 0 52.5px 0
  }
}
@media (max-width:1024px) {
  .case-d .case-d-box .image {
    margin-top: 10px
  }
}
.case-d .case-d-box .image p {
  width: 81.8%;
  margin: auto;
  margin-bottom: min(2.60416667vw, 50px);
  text-align: center
}
@media (max-width:1024px) {
  .case-d .case-d-box .image p {
    margin-bottom: 25px
  }
}
.case-d .case-d-box .image p img {
  border-radius: 16px
}
.case-d .case-d-box .image p::last-child {
  margin-bottom: 0
}
@media (max-width:1200px) {
  .case-d .case-d-box {
    padding-top: 50px
  }
  .case-d .case-d-box .information-box .item {
    font-size: 14px;
    margin-right: 20px
  }
}
@media (max-width:768px) {
  .case-d .case-d-box .image {
    border-radius: 10px
  }
  .case-d .case-d-box .image p {
    width: 90%
  }

  .case-d .case-d-box .image p img {
    border-radius: 10px
  }
  .case-d .case-d-box .information-box .item {
    font-size: 12px;
    margin-right: 14px
  }
}
.case-d .case-x {
  padding: min(5.20833333vw, 100px) 0 min(2.08333333vw, 40px)
}
@media (max-width:1024px) {
  .case-d .case-x {
    padding: 50px 0 20px 0
  }
}
.case-d .case-x .slide-box {
  margin-top: min(3.02083333vw, 58px);
  position: relative
}
@media (max-width:1024px) {
  .case-d .case-x .slide-box {
    margin-top: 29px
  }
}
.case-d .case-x .slide-box .swiper-button-ico {
  width: 60px;
  height: 60px;
  background: no-repeat center rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-top: -60px;
  -webkit-transition: all .3s;
  transition: all .3s
}
.case-d .case-x .slide-box .swiper-button-ico.swiper-button-prev {
  left: -34px;
  background-image: url(../image/prev2.png)
}
.case-d .case-x .slide-box .swiper-button-ico.swiper-button-next {
  right: -34px;
  background-image: url(../image/next2.png)
}
.case-d .case-x .slide-box .swiper-button-ico:hover {
  background-color: #0c2f71
}
.case-d .case-x .slide-box .case-slide {
  padding-bottom: 60px
}
.case-d .case-x .slide-box .case-slide .swiper-slide {
  height: auto
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box {
  display: block
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img {
    margin-bottom: 13.5px
  }
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb {
  padding-bottom: 70%
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(204, 0, 0, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .case-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .case-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
    font-size: 15px
  }
}
.case-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.case-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.case-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .img .pb .zz {
  opacity: 1
}
.case-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .text-box .name {
  color: #0c2f71
}
.case-d .case-x .slide-box .case-slide .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  opacity: 0
}
.case-d .case-x .slide-box .case-slide .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.case-d .case-x .slide-box .case-slide .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
@media (max-width:1200px) {
  .case-d .case-x {
    padding-top: 50px
  }
  .case-d .case-x .slide-box .swiper-button-ico {
    display: none
  }
  .case-d .case-x .slide-box .case-slide .swiper-pagination {
    opacity: 1
  }
}
.team .team-box1 {
  padding: min(4.27083333vw, 82px) 0 min(4.47916667vw, 86px)
}
@media (max-width:1024px) {
  .team .team-box1 {
    padding: 41px 0 43px 0
  }
}
.team .team-box1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: min(3.75vw, 72px)
}
@media (max-width:1024px) {
  .team .team-box1 .list {
    margin-top: 36px
  }
}
.team .team-box1 .list .item {
  width: 25%;
  padding: 0 20px;
  margin-bottom: min(3.85416667vw, 74px)
}
@media (max-width:1024px) {
  .team .team-box1 .list .item {
    margin-bottom: 37px
  }
}
.team .team-box1 .list .item .item-box {
  display: block;
  text-align: center
}
.team .team-box1 .list .item .item-box .img {
  overflow: hidden;
  margin: auto;
  margin-bottom: min(1.04166667vw, 20px);
  width: 229px;
  height: 229px;
  position: relative;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1024px) {
  .team .team-box1 .list .item .item-box .img {
    margin-bottom: 10px
  }
}
.team .team-box1 .list .item .item-box .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 50%
}
.team .team-box1 .list .item .item-box .text-box .name {
  font-size: 18px;
  color: #333333;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: min(.83333333vw, 16px)
}
@media (max-width:1600px) {
  .team .team-box1 .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .team .team-box1 .list .item .item-box .text-box .name {
    font-size: 15px
  }
}
@media (max-width:1024px) {
  .team .team-box1 .list .item .item-box .text-box .name {
    margin-bottom: 8px
  }
}
.team .team-box1 .list .item .item-box .text-box .text {
  font-size: 15px;
  color: #666666;
  line-height: 1.6
}
.team .team-box1 .list .item .item-box .text-box .text p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  text-align: center
}
@media (max-width:1600px) {
  .team .team-box1 .list .item .item-box .text-box .text p {
    font-size: 14px
  }
}
@media (max-width:1600px) {
  .team .team-box1 .list .item .item-box .text-box .text {
    font-size: 14px
  }
}
.team .team-box1 .list .item:hover .item-box .img {
  border-color: #0c2f71;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1)
}
.team .team-box1 .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
.team .team-box1 .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .team .team-box1 .more {
    margin-top: 10px
  }
}
.team .team-box1 .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .team .team-box1 .more a {
    font-size: 14px
  }
}
.team .team-box1 .more a span {
  position: relative;
  z-index: 1
}
.team .team-box1 .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.team .team-box1 .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .team .team-box1 .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .team .team-box1 .more a {
    width: 125px !important;
    height: 35px !important
  }
  .team .team-box1 .more a i {
    display: none
  }
}
@media (max-width:1200px) {
  .team .team-box1 {
    padding: 50px 0
  }
  .team .team-box1 .list .item .item-box .img {
    width: 140px;
    height: 140px
  }
}
@media (max-width:768px) {
  .team .team-box1 .list .item {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px
  }
  .team .team-box1 .layui-laypage a, .team .team-box1 .layui-laypage span {
    font-size: 14px;
    width: 42px;
    height: 40px;
    line-height: 40px
  }
}
.team-d .team-d-box {
  background-color: #efefef;
  padding: min(5.20833333vw, 100px) 0 min(4.6875vw, 90px)
}
@media (max-width:1024px) {
  .team-d .team-d-box {
    padding: 50px 0 45px 0
  }
}
.team-d .team-d-box .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 min(2.60416667vw, 50px) 0 min(2.60416667vw, 50px);
  padding-top: min(3.125vw, 60px);
  padding-bottom: min(3.38541667vw, 65px);
  background-color: white
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box {
    padding: 0 25px 0 25px
  }
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box {
    padding-top: 30px
  }
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box {
    padding-bottom: 32.5px
  }
}
.team-d .team-d-box .wrap-box .img {
  width: 39.8%;
  overflow: hidden
}
.team-d .team-d-box .wrap-box .img .pb {
  padding-bottom: 75%
}
.team-d .team-d-box .wrap-box .text-box {
  width: 56%;
  padding-top: min(2.34375vw, 45px)
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box .text-box {
    padding-top: 22.5px
  }
}
.team-d .team-d-box .wrap-box .text-box .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  padding-bottom: min(1.77083333vw, 34px);
  margin-bottom: min(1.5625vw, 30px);
  border-bottom: 1px solid #e0e0e0
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box .text-box .box {
    padding-bottom: 17px
  }
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box .text-box .box {
    margin-bottom: 15px
  }
}
.team-d .team-d-box .wrap-box .text-box .box::before {
  content: '';
  width: 94px;
  height: 3px;
  background-color: #0c2f71;
  position: absolute;
  left: 0;
  bottom: 0
}
.team-d .team-d-box .wrap-box .text-box .box .name {
  font-size: 42px;
  color: #222222;
  line-height: 1.4
}
@media (max-width:1600px) {
  .team-d .team-d-box .wrap-box .text-box .box .name {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .team-d .team-d-box .wrap-box .text-box .box .name {
    font-size: 36px
  }
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box .text-box .box .name {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .team-d .team-d-box .wrap-box .text-box .box .name {
    font-size: 24px
  }
}
.team-d .team-d-box .wrap-box .text-box .box .text {
  font-size: 20px;
  color: #333333;
  line-height: 1.4
}
@media (max-width:1600px) {
  .team-d .team-d-box .wrap-box .text-box .box .text {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .team-d .team-d-box .wrap-box .text-box .box .text {
    font-size: 16px
  }
}
.team-d .team-d-box .wrap-box .text-box .box .label {
  font-size: 18px;
  color: #c2c2c2;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  width: 124px;
  min-height: 88px;
  letter-spacing: 2px;
  padding: 0 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
@media (max-width:1600px) {
  .team-d .team-d-box .wrap-box .text-box .box .label {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .team-d .team-d-box .wrap-box .text-box .box .label {
    font-size: 15px
  }
}
.team-d .team-d-box .wrap-box .text-box .box .label::before {
  content: '';
  width: 48px;
  height: 88px;
  background: url(../image/team-d-ico1.png) no-repeat;
  position: absolute;
  left: 0;
  bottom: -4px
}
.team-d .team-d-box .wrap-box .text-box .box .label::after {
  content: '';
  width: 48px;
  height: 88px;
  background: url(../image/team-d-ico2.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: -4px
}
.team-d .team-d-box .wrap-box .text-box .p p {
  font-size: 16px;
  color: #666666;
  line-height: 2
}
@media (max-width:1600px) {
  .team-d .team-d-box .wrap-box .text-box .p p {
    font-size: 14px
  }
}
@media (max-width:1200px) {
  .team-d .team-d-box {
    padding: 50px 0
  }
  .team-d .team-d-box .wrap-box {
    padding: 20px
  }
  .team-d .team-d-box .wrap-box .text-box {
    padding-top: 0
  }
  .team-d .team-d-box .wrap-box .text-box .p p {
    line-height: 24px
  }
}
@media (max-width:1024px) {
  .team-d .team-d-box .wrap-box {
    display: block
  }
  .team-d .team-d-box .wrap-box .text-box {
    margin-top: 10px;
    width: 100%
  }
}
@media (max-width:768px) {
  .team-d .team-d-box .wrap-box {
    padding: 14px
  }
  .team-d .team-d-box .wrap-box .img {
    width: 100%
  }
  .team-d .team-d-box .wrap-box .text-box .box .label {
    font-size: 12px;
    min-height: 50px;
    width: 66px;
    letter-spacing: 1px;
    padding: 0 16px
  }
  .team-d .team-d-box .wrap-box .text-box .box .label::before {
    width: 27px;
    height: 50px;
    background-size: 27px 50px
  }
  .team-d .team-d-box .wrap-box .text-box .box .label::after {
    width: 27px;
    height: 50px;
    background-size: 27px 50px
  }
}
.team-d .team-x {
  padding: min(4.01041667vw, 77px) 0 min(5.15625vw, 99px)
}
@media (max-width:1024px) {
  .team-d .team-x {
    padding: 38.5px 0 49.5px 0
  }
}
.team-d .team-x .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -17px;
  margin-right: -17px;
  margin-top: min(2.60416667vw, 50px)
}
@media (max-width:1024px) {
  .team-d .team-x .list {
    margin-top: 25px
  }
}
.team-d .team-x .list .item {
  width: 33.33333333%;
  padding: 0 17px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .team-d .team-x .list .item {
    margin-bottom: 13.5px
  }
}
.team-d .team-x .list .item .item-box {
  display: block
}
.team-d .team-x .list .item .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .team-d .team-x .list .item .item-box .img {
    margin-bottom: 13.5px
  }
}
.team-d .team-x .list .item .item-box .img .pb {
  padding-bottom: 70%
}
.team-d .team-x .list .item .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.team-d .team-x .list .item .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(204, 0, 0, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.team-d .team-x .list .item .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.team-d .team-x .list .item .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0
}
.team-d .team-x .list .item .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .team-d .team-x .list .item .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .team-d .team-x .list .item .item-box .text-box .name {
    font-size: 15px
  }
}
.team-d .team-x .list .item .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.team-d .team-x .list .item:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.team-d .team-x .list .item:hover .item-box .img .pb .zz {
  opacity: 1
}
.team-d .team-x .list .item:hover .item-box .text-box .name {
  color: #0c2f71
}
.team-d .team-x .more {
  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;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1024px) {
  .team-d .team-x .more {
    margin-top: 10px
  }
}
.team-d .team-x .more a {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .team-d .team-x .more a {
    font-size: 14px
  }
}
.team-d .team-x .more a span {
  position: relative;
  z-index: 1
}
.team-d .team-x .more a i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.team-d .team-x .more a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .team-d .team-x .more a {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .team-d .team-x .more a {
    width: 125px !important;
    height: 35px !important
  }
  .team-d .team-x .more a i {
    display: none
  }
}
.team-d .team-x .more a:hover::before {
  width: 100%;
  left: 0px
}
@media (max-width:1200px) {
  .team-d .team-x {
    padding: 50px 0
  }
  .team-d .team-x .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .team-d .team-x .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .team-d .team-x .list .item {
    width: 50%
  }
}
.news .news-box1 {
  padding: min(4.27083333vw, 82px) 0 min(4.47916667vw, 86px)
}
@media (max-width:1024px) {
  .news .news-box1 {
    padding: 41px 0 43px 0
  }
}
.news .news-box1 .Tips {
  font-size: 24px;
  padding: min(3.64583333vw, 70px) 0 min(3.64583333vw, 70px)
}
@media (max-width:1600px) {
  .news .news-box1 .Tips {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .news .news-box1 .Tips {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .Tips {
    padding: 35px 0 35px 0
  }
}

.news-detail-content img{ max-width: 100%;}


.news .news-box1 .Tips em {
  color: #0c2f71
}
.news .news-box1 .tabBox a {
  font-size: 20px;
  color: #666;
  position: relative;
  padding-left: min(2.3vw, 50px);
  margin-left: min(1.25vw, 24px);
  transition: all .3s;
  -webkit-transition: all .3s;
	font-weight: 700;
}
@media (max-width:1600px) {
  .news .news-box1 .tabBox a {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .tabBox a {
    padding-left: 12.5px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .tabBox a {
    margin-left: 12px
  }
}
.news .news-box1 .tabBox a::before {
  content: '/';
  font-size: 16px;
  color: #e6e6e6;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto
}
@media (max-width:1600px) {
  .news .news-box1 .tabBox a::before {
    font-size: 14px
  }
}

.news .news-box1 .tabBox a:hover {
  color: #0c2f71
}
.news .news-box1 .list .item {
  padding: min(2.8125vw, 54px) 0 min(2.65625vw, 51px);
  padding-right: min(12.70833333vw, 244px);
  border-bottom: 1px solid #eaeaea;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative
}
@media (max-width:1024px) {
  .news .news-box1 .list .item {
    padding: 27px 0 25.5px 0
  }
}
@media (max-width:1024px) {
  .news .news-box1 .list .item {
    padding-right: 122px
  }
}

.news .news-box1 .list .item .img .pb {
  padding-bottom: 64%
}
.news .news-box1 .list .item .img .pb img {
  height: 100%;
  object-fit: cover
}
.news .news-box1 .list .item .text-box {

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.news .news-box1 .list .item .text-box .title {
  font-size: 24px;
  color: #333333;
  line-height: 1.4;
width: 1000px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .3s;
  -webkit-transition: all .3s;
  margin-bottom: min(1.25vw, 24px)
}
@media (max-width:1600px) {
  .news .news-box1 .list .item .text-box .title {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .news .news-box1 .list .item .text-box .title {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .list .item .text-box .title {
    margin-bottom: 12px
  }
}
.news .news-box1 .list .item .text-box .time-m {
  font-size: 14px;
  color: #888888;
  line-height: 1;
  margin-bottom: min(.52083333vw, 10px);
  display: none
}
@media (max-width:1024px) {
  .news .news-box1 .list .item .text-box .time-m {
    margin-bottom: 5px
  }
}
.news .news-box1 .list .item .text-box .text {

  font-size: 15px;
  color: #888888;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}
@media (max-width:1600px) {
  .news .news-box1 .list .item .text-box .text {
    font-size: 14px;
	  width: 80%;
  }
}
.news .news-box1 .list .item .text-ri {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.news .news-box1 .list .item .text-ri .date {

  font-size: 40px;
  color: #e0e0e0;
  line-height: 1;
  text-align: right
}
@media (max-width:1600px) {
  .news .news-box1 .list .item .text-ri .date {
    font-size: 40px
  }
}
@media (max-width:1470px) {
  .news .news-box1 .list .item .text-ri .date {
    font-size: 38px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .list .item .text-ri .date {
    font-size: 36px
  }
}
@media (max-width:768px) {
  .news .news-box1 .list .item .text-ri .date {
    font-size: 28px
  }
}
.news .news-box1 .list .item .text-ri .date em {
  display: block;
  font-size: 26px;
  margin-bottom: min(.3125vw, 6px);
	font-style: normal;
}
@media (max-width:1600px) {
  .news .news-box1 .list .item .text-ri .date em {
    font-size: 23px
  }
}
@media (max-width:1470px) {
  .news .news-box1 .list .item .text-ri .date em {
    font-size: 21px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .list .item .text-ri .date em {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .news .news-box1 .list .item .text-ri .date em {
    margin-bottom: 3px
  }
}
.news .news-box1 .list .item .text-ri .more {
  right: -20px;
  top: 50%;
  width: 185px;
  height: 48px;
  border-radius: 24px;
  font-size: 15px;
  color: white;
  line-height: 1;
  background-color: #0c2f71;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 137px;
  height: 42px;
  border-radius: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0
}
@media (max-width:1600px) {
  .news .news-box1 .list .item .text-ri .more {
    font-size: 14px
  }
}
.news .news-box1 .list .item .text-ri .more span {
  position: relative;
  z-index: 1
}
.news .news-box1 .list .item .text-ri .more i {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 13px;
  background: url(../image/more-ico.svg) no-repeat center;
  background-size: 5px 7px;
  width: 5px;
  height: 100%
}
.news .news-box1 .list .item .text-ri .more::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
@media (max-width:1150px) {
  .news .news-box1 .list .item .text-ri .more {
    width: 145px;
    height: 40px
  }
}
@media (max-width:990px) {
  .news .news-box1 .list .item .text-ri .more {
    width: 125px !important;
    height: 35px !important
  }
  .news .news-box1 .list .item .text-ri .more i {
    display: none
  }
}
.news .news-box1 .list .item .text-ri .more::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #0c2f71;
  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.news .news-box1 .list .item .text-ri .more em {
  position: relative;
  z-index: 1;
	font-style: normal;
}
.news .news-box1 .list .item .text-ri .more:hover::before {
  width: 100%;
  left: 0px
}
.news .news-box1 .list .item:hover .text-box .title {
  color: #0c2f71
}
.news .news-box1 .list .item:hover .text-ri .date {
  opacity: 0
}
.news .news-box1 .list .item:hover .text-ri .more {
  opacity: 1;
  right: 0
}
.news .news-box1 .pagination {
  margin-top: min(3.38541667vw, 65px);
	margin: 0 auto;
    width: 100%;
	margin-top: 50px;
}
@media (max-width:1024px) {
  .news .news-box1 .pagination {
    margin-top: 32.5px
  }
}
@media (max-width:1200px) {
  .news .news-box1 {
    padding: 50px 0
  }
}
@media (max-width:768px) {
  .news .news-box1 .page-title .wrap-box {
    display: block
  }
  .news .news-box1 .page-title .wrap-box .tab-name {
    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;
    margin-top: 10px
  }
  .news .news-box1 .list .item {
    display: block;
    padding: 24px 0
  }
  .news .news-box1 .list .item .img {
    width: 100%;
    margin-bottom: 10px
  }
  .news .news-box1 .list .item .text-box {
    width: 100%;
    display: block
  }
  .news .news-box1 .list .item .text-box .time-m {
    display: block
  }
  .news .news-box1 .list .item .text-ri {
    position: static;
    margin-top: 20px
  }
  .news .news-box1 .list .item .text-ri .date {
    display: none
  }
  .news .news-box1 .list .item .text-ri .more {
    position: relative;
    right: 0;
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
  .news .news-box1 .layui-laypage a, .news .news-box1 .layui-laypage span {
    font-size: 14px;
    width: 42px;
    height: 40px;
    line-height: 40px
  }
}
.news-d .news-d-box1 {
  padding-top: min(5.20833333vw, 100px)
}
@media (max-width:1024px) {
  .news-d .news-d-box1 {
    padding-top: 50px
  }
}
.news-d .news-d-box1 .wrap-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.news-d .news-d-box1 .wrap-box .wrap-le {
  width: 71%
}
.news-d .news-d-box1 .wrap-box .wrap-le .container-custom h1 {
  font-size: 34px;
  color: #222222;
  line-height: 1.4
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .container-custom h1 {
    font-size: 38px
  }
}
@media (max-width:1470px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .container-custom h1 {
    font-size: 33px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .container-custom h1 {
    font-size: 29px
  }
}
@media (max-width:768px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .container-custom h1 {
    font-size: 24px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: min(1.25vw, 24px);
  border-bottom: 1px solid #f0f0f0;
  margin: min(1.04166667vw, 20px) 0 min(2.29166667vw, 44px)
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box {
    padding-bottom: 12px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box {
    margin: 10px 0 22px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 15px;
  color: #222222;
  color: rgba(34, 34, 34, 0.7)
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box .info {
    font-size: 14px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .author .author-img {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #d6e1e1;
  border-radius: 50%;
  text-align: center;
  margin-right: min(.41666667vw, 8px)
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .author .author-img {
    margin-right: 4px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .author .author-img img {
  max-width: 90%
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .time {
	text-align: center
  
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box .info .time {
    margin-left: 16px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share span {
  margin-right: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #667371;
  font-size: 14px
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b {
  width: 30px;
  height: 30px;
  background: #cccccc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all .5s;
  margin-left: 6px
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 30px;
  height: 30px;
  background: no-repeat center
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b a.icon-qq {
  background-image: url(../image/qq-ico.png);
  background-size: 16px 17px
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b a.icon-weibo {
  background-image: url(../image/blog-ico.png);
  background-size: 20px 16px
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b a.icon-weixin {
  background-image: url(../image/wx-ico.png);
  background-size: 21px 17px
}
.news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b:hover {
  background: #0c2f71
}
.news-d .news-d-box1 .wrap-box .wrap-le .news-detail-content p {
  font-size: 16px;
  color: #555555;
  line-height:1.95em!important;
  margin-bottom: 20px
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .news-detail-content p {
    font-size: 14px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 14px;
  padding-top: min(3.125vw, 60px);
  margin-top: min(1.66666667vw, 32px);
  border-top: 1px solid #f0f0f0;
  color: #999999;
  line-height: 1.4;
  position: relative
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn {
    padding-top: 30px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn {
    margin-top: 16px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn {
  width: 40%
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn em {
  display: block;
  margin-bottom: min(.41666667vw, 8px);
	font-style: normal;
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn em {
    margin-bottom: 4px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn a {
  color: #555555;
  padding-right: 10px;
  max-width: 94%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s;
  -webkit-transition: all .3s
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn a:hover {
  color: #0c2f71
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn.next {
  text-align: right
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-a {
  font-size: 16px;
  color: #333333;
  height: 38px;
  border: 1px solid #333333;
  border-radius: 19px;
  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;
  width: 106px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all .3s;
  -webkit-transition: all .3s
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-a {
    font-size: 14px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-a:hover {
  background-color: #0c2f71;
  border-color: #0c2f71;
  color: white
}
.news-d .news-d-box1 .wrap-box .wrap-ri {
  width: 22.6%
}
.news-d .news-d-box1 .wrap-box .wrap-ri .page-titles .name {
  font-size: 22px;
  color: #333333;
  margin-bottom: min(.625vw, 12px)
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .page-titles .name {
    font-size: 20px
  }
}
@media (max-width:1470px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .page-titles .name {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .page-titles .name {
    margin-bottom: 6px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item {
  padding: min(1.25vw, 24px) 0 min(1.25vw, 24px);
  border-bottom: 1px solid #f0f0f0
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .ul .item {
    padding: 12px 0 12px 0
  }
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .img {
  width: 36.5%
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .img .pb {
  padding-bottom: 64.5%
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .img .pb img {
  height: 100%;
  object-fit: cover
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri {

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri .text-box {
  width: 100%
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri .text-box .name {
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
  position: relative;

  transition: all .3s;
  -webkit-transition: all .3s;
  margin-bottom: min(.20833333vw, 4px)
}
@media (max-width:1600px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri .text-box .name {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri .text-box .name {
    margin-bottom: 2px
  }
}
.news-d .news-d-box1 .wrap-box .wrap-ri .ul .item .item-ri .text-box .text {
  font-size: 14px;
  color: #999999;
  line-height: 17px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}
@media (max-width:1200px) {
  .news-d .news-d-box1 {
    padding-top: 50px
  }
  .news-d .news-d-box1 .wrap-box {
    display: block
  }
  .news-d .news-d-box1 .wrap-box .wrap-le {
    width: 100%
  }
  .news-d .news-d-box1 .wrap-box .wrap-ri {
    width: 100%;
    margin-top: 20px
  }
}
@media (max-width:768px) {
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box {
    display: block
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box .share {
    margin-top: 10px
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .info-box .share .b {
    margin-left: 0;
    margin-right: 6px
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn {
    display: block
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn {
    width: 100%
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-btn.next {
    text-align: left;
    margin-top: 10px
  }
  .news-d .news-d-box1 .wrap-box .wrap-le .editor-pn .editor-a {
    position: static;
    margin-top: 30px
  }
}
.news-d .case-x {
  padding: min(5.20833333vw, 100px) 0 min(2.08333333vw, 40px)
}
@media (max-width:1024px) {
  .news-d .case-x {
    padding: 50px 0 20px 0
  }
}
.news-d .case-x .slide-box {
  margin-top: min(3.02083333vw, 58px);
  position: relative
}
@media (max-width:1024px) {
  .news-d .case-x .slide-box {
    margin-top: 29px
  }
}
.news-d .case-x .slide-box .swiper-button-ico {
  width: 60px;
  height: 60px;
  background: no-repeat center rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-top: -60px;
  -webkit-transition: all .3s;
  transition: all .3s
}
.news-d .case-x .slide-box .swiper-button-ico.swiper-button-prev {
  left: -34px;
  background-image: url(../image/prev2.png)
}
.news-d .case-x .slide-box .swiper-button-ico.swiper-button-next {
  right: -34px;
  background-image: url(../image/next2.png)
}
.news-d .case-x .slide-box .swiper-button-ico:hover {
  background-color: #0c2f71
}
.news-d .case-x .slide-box .case-slide {
  padding-bottom: 60px
}
.news-d .case-x .slide-box .case-slide .swiper-slide {
  height: auto
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box {
  display: block
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img {
  overflow: hidden;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img {
    margin-bottom: 13.5px
  }
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb {
  padding-bottom: 70%
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb img {
  -webkit-transition: all .3s;
  transition: all .3s
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz {
  display: inline-flex;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(204, 0, 0, 0.7);
  color: #fff;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .5s linear;
  -webkit-transition: all .5s linear
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .img .pb .zz span::before {
  content: '+';
  width: 100%;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
  font-size: 18px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .news-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
    font-size: 16px
  }
}
@media (max-width:1470px) {
  .news-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .name {
    font-size: 15px
  }
}
.news-d .case-x .slide-box .case-slide .swiper-slide .item-box .text-box .text {
  font-size: 14px;
  color: #888888;
  line-height: 1.4
}
.news-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .img .pb img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15)
}
.news-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .img .pb .zz {
  opacity: 1
}
.news-d .case-x .slide-box .case-slide .swiper-slide:hover .item-box .text-box .name {
  color: #0c2f71
}
.news-d .case-x .slide-box .case-slide .swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  opacity: 0
}
.news-d .case-x .slide-box .case-slide .swiper-pagination span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: #bebebe;
  opacity: 1;
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}
.news-d .case-x .slide-box .case-slide .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #0c2f71
}
@media (max-width:1200px) {
  .news-d .case-x {
    padding-top: 50px
  }
  .news-d .case-x .slide-box .swiper-button-ico {
    display: none
  }
  .news-d .case-x .slide-box .case-slide .swiper-pagination {
    opacity: 1
  }
}
.contact .contact-box1 {
  background: url(../image/contact-box1-bg.jpg) no-repeat center;
  background-size: cover;
  padding: min(3.64583333vw, 70px) 0 min(4.0625vw, 78px)
}
@media (max-width:1024px) {
  .contact .contact-box1 {
    padding: 35px 0 39px 0
  }
}
.contact .contact-box1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  margin-top: min(2.91666667vw, 56px)
}
@media (max-width:1024px) {
  .contact .contact-box1 .list {
    margin-top: 28px
  }
}
.contact .contact-box1 .list .item {
  width: 33.33333333%;
  padding: 0 14px;
  margin-bottom: min(1.40625vw, 27px)
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item {
    margin-bottom: 13.5px
  }
}
.contact .contact-box1 .list .item .item-box {
  height: 100%;
  background-color: white;
  display: block;
  padding: min(2.86458333vw, 55px) 0 min(2.86458333vw, 55px);
  padding-right: min(2.29166667vw, 44px);
  padding-left: min(2.29166667vw, 44px)
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box {
    padding: 27.5px 0 27.5px 0
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box {
    padding-right: 22px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box {
    padding-left: 22px
  }
}
.contact .contact-box1 .list .item .item-box .text-box .name {
  font-size: 28px;
  color: #222222;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: min(2.60416667vw, 50px)
}
@media (max-width:1600px) {
  .contact .contact-box1 .list .item .item-box .text-box .name {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .contact .contact-box1 .list .item .item-box .text-box .name {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box .text-box .name {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box .text-box .name {
    margin-bottom: 25px
  }
}
.contact .contact-box1 .list .item .item-box .text-box .text p {
  font-size: 16px;
  color: #999999;
  line-height: 1.4;
  -webkit-transition: all .3s;
  transition: all .3s
}
@media (max-width:1600px) {
  .contact .contact-box1 .list .item .item-box .text-box .text p {
    font-size: 14px
  }
}
.contact .contact-box1 .list .item .item-box .text-box .text h5 {

  font-size: 32px;
  color: #222222;
  line-height: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: min(1.04166667vw, 20px) 0 min(.83333333vw, 16px)
}
@media (max-width:1600px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h5 {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h5 {
    font-size: 24px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h5 {
    font-size: 22px
  }
}
@media (max-width:768px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h5 {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h5 {
    margin: 10px 0 8px
  }
}
.contact .contact-box1 .list .item .item-box .text-box .text h6 {
  font-size: 24px;
  color: #222222;
  line-height: 1.9;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: min(1.04166667vw, 20px)
}
@media (max-width:1600px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h6 {
    font-size: 22px
  }
}
@media (max-width:1470px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h6 {
    font-size: 16px
  }
}
@media (max-width:1024px) {
  .contact .contact-box1 .list .item .item-box .text-box .text h6 {
    margin-top: 10px
  }
}
.contact .contact-box1 .list .item:hover .item-box {
  background: url(../image/contact-box1-item-bg.jpg) no-repeat center;
  background-size: cover
}
.contact .contact-box1 .list .item:hover .item-box .text-box .name {
  color: white
}
.contact .contact-box1 .list .item:hover .item-box .text-box .text p, .contact .contact-box1 .list .item:hover .item-box .text-box .text h5, .contact .contact-box1 .list .item:hover .item-box .text-box .text h6 {
  color: white
}
@media (max-width:1200px) {
  .contact .contact-box1 {
    padding: 50px 0
  }
  .contact .contact-box1 .list {
    margin-left: -7px;
    margin-right: -7px
  }
  .contact .contact-box1 .list .item {
    padding: 0 7px
  }
}
@media (max-width:768px) {
  .contact .contact-box1 .list .item {
    width: 100%
  }
}
.contact .contact-box2 {
	padding-top: 50px;
	padding-bottom: 50px;

}
@media (max-width:1024px) {
  .contact .contact-box2 {
    padding: 43px 0 52.5px 0
  }
}
.contact .contact-box2 iframe {
  width: 100%;
 
  border: none;

}
@media (max-width:1024px) {
  .contact .contact-box2 iframe {
    margin-top: 28px
  }
}
@media (max-width:1200px) {
  .contact .contact-box2 {
    padding: 50px 0
  }
  .contact .contact-box2 iframe {
    height: 360px
  }
}
.contact .contact-box3 {
  background: url(../image/contact-box3-bg.jpg) no-repeat center;
  background-size: cover;

}

.asasas{ padding-top: 100px; padding-bottom: 100px;}
@media (max-width:1024px) {
  .contact .contact-box3 {
    padding: 43px 0 52.5px 0
  }
}
.contact .contact-box3 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(3.64583333vw, 70px) 0 min(3.64583333vw, 70px);
  margin-top: min(3.125vw, 60px)
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box {
    padding: 35px 0 35px 0
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box {
    margin-top: 30px
  }
}
.contact .contact-box3 .wrap-box .wrap-le {
  width: 57%;
  border-right: 1px solid #e3e3e3;
  padding: 0 min(4.16666667vw, 80px) 0 min(4.6875vw, 90px)
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le {
    padding: 0 40px 0 45px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .name {
  font-size: 16px;
  color: #666666
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-le .name {
    font-size: 14px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .name em {
  font-size: 28px;
  color: #0c2f71;
  margin-right: min(.625vw, 12px);
		font-style: normal;
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-le .name em {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-le .name em {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .name em {
    font-size: 18px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .name em {
    margin-right: 6px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
  margin-top: min(1.35416667vw, 26px)
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .info-list {
    margin-top: 13px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .info-list .widget-w5 {
  width: 50%;
  padding: 0 6px
}
.contact .contact-box3 .wrap-box .wrap-le .widget-label {
  position: relative;
  margin: min(.9375vw, 18px) 0 min(.9375vw, 18px)
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .widget-label {
    margin: 9px 0 9px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .widget-label label {
  font-size: 16px;
  color: #333333
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-le .widget-label label {
    font-size: 14px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .form-control {
  width: 100%;
  height: 56px;
  background-color: #f0f0f0;
  padding: 0 min(1.04166667vw, 20px) 0 min(1.04166667vw, 20px);
  color: #666666;
  font-size: 16px
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .form-control {
    padding: 0 10px 0 10px
  }
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-le .form-control {
    font-size: 14px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .btn {
  width: 100%;
  height: 56px;
  background-color: #0c2f71;
  text-align: center;
  font-size: 16px;
  color: white;
  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;
  margin-top: min(1.66666667vw, 32px);
  position: relative;
  overflow: hidden
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-le .btn {
    font-size: 14px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-le .btn {
    margin-top: 16px
  }
}
.contact .contact-box3 .wrap-box .wrap-le .btn::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;

  top: 0px;
  right: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}
.contact .contact-box3 .wrap-box .wrap-le .btn em {
  position: relative;
  z-index: 1;
	font-style: normal;
}
.contact .contact-box3 .wrap-box .wrap-le .btn:hover::before {
  width: 100%;
  left: 0px
}


@media  (max-width: 1399px) {
.contact .contact-box3 .wrap-box .wrap-ri {

  padding: 0 min(5.625vw, 108px) 0 min(4.16666667vw, 80px)
}
}
@media (min-width: 1400px) and (max-width: 1439px) {
.contact .contact-box3 .wrap-box .wrap-ri {
  width: 43%;
  padding: 0 min(5.625vw, 108px) 0 min(4.16666667vw, 80px)
}
}
@media (min-width: 1440px) and (max-width: 1919px)  {
.contact .contact-box3 .wrap-box .wrap-ri {
  width: 43%;
  padding: 0 min(5.625vw, 108px) 0 min(4.16666667vw, 80px)
}
}

@media (min-width: 1920px) {
.contact .contact-box3 .wrap-box .wrap-ri {
  width: 43%;
  padding: 0 min(5.625vw, 108px) 0 min(4.16666667vw, 80px)
}
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri {
    padding: 0 54px 0 40px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result {
  display: inline-block;
  vertical-align: top;
  width: 100%
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
  padding: 0 min(1.5625vw, 30px) 0 min(1.5625vw, 30px);
  border-radius: 6px;
  text-align: right;
  line-height: 77px;
  height: 77px;
  overflow: hidden;
  background-color: #0c2f71;
  border: 3px solid #0c2f71;
  font-size: 28px;
  color: white
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
    padding: 0 15px 0 15px
  }
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
    font-size: 18px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {

  font-size: 36px;
  color: white;
  display: inline-block;
  vertical-align: top;
  width: 140px;
  text-align: right;
  margin-right: min(.52083333vw, 10px)
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    font-size: 32px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    font-size: 28px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    font-size: 24px
  }
}
@media (max-width:768px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    margin-right: 5px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total i {
  font-size: 28px;
  color: white;
	font-style: normal;
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total i {
    font-size: 24px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total i {
    font-size: 20px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total i {
    font-size: 18px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .item {
  margin-top: min(.625vw, 12px);
  padding: 0 min(1.5625vw, 30px) 0 min(1.5625vw, 30px);
  background-color: #e9e9e9;
  border-radius: 6px;
  text-align: right;
  line-height: 62px;
  height: 62px;
  overflow: hidden
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item {
    margin-top: 6px
  }
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item {
    padding: 0 15px 0 15px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .word {
  display: inline-block;
  vertical-align: top;
  color: #333333;
  font-size: 20px
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .word {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .word {
    font-size: 16px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .prices {
  color: #333333;
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  width: 62%
}
@media (max-width:1600px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .prices {
    font-size: 18px
  }
}
@media (max-width:1470px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .prices {
    font-size: 16px
  }
}
.contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .prices span {

  color: #0c2f71;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  width: 80px;
  margin-right: min(.52083333vw, 10px)
}
@media (max-width:1024px) {
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item .prices span {
    margin-right: 5px
  }
}
@media (max-width:1200px) {
  .contact .contact-box3 {
    padding: 50px 0
  }
  .contact .contact-box3 .wrap-box {
    padding: 30px 0
  }
  .contact .contact-box3 .wrap-box .wrap-le {
    padding: 0 20px
  }
  .contact .contact-box3 .wrap-box .wrap-le .name em {
    display: block
  }
  .contact .contact-box3 .wrap-box .wrap-ri {
    padding: 0 20px
  }
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total span {
    font-size: 18px;
    width: 62px
  }
}
@media (max-width:768px) {
  .contact .contact-box3 .wrap-box {
    padding: 20px 0;
    display: block
  }
  .contact .contact-box3 .wrap-box .wrap-le {
    width: 100%;
    padding: 0 14px;
    border: none
  }
  .contact .contact-box3 .wrap-box .wrap-le .form-control, .contact .contact-box3 .wrap-box .wrap-le .btn {
    height: 45px
  }
  .contact .contact-box3 .wrap-box .wrap-ri {
    width: 100%;
    padding: 0 14px;
    margin-top: 30px
  }
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .offer-result-total {
    height: 52px;
    line-height: 52px;
    border: 1px solid #761f20
  }
  .contact .contact-box3 .wrap-box .wrap-ri .offer-result .item {
    height: 45px;
    line-height: 45px
  }
} /*# sourceMappingURL=./public.min.css.map */



.n_box5{width:100%; padding:50px 0px;}

.n_box5_t{width:100%; line-height:1.7; text-align:center; color:#0c2f71; font-size:35px; font-weight:bold;}

.n_box5_c{width:100%; padding-top:45px;}

.n_box5_ul{width:100%;}

.n_box5_ul li{width:100%; float:left; padding-bottom:40px;}

.n_box5_ul li .div{width:100%; padding:15px 9.5% 15px 2%; background-color:#f2f2f2; color:#1D1D1F; font-size:16px;overflow:hidden;-webkit-transition:all 0.5s;transition:all 0.5s;

 algin-items:center;}

.n_box5_ul li .div:hover{ background-color:#0c2f71; color:#fff;}

.n_box5_ul li .div .div_l{width:21%; padding:60px 0px; font-size:20px; line-height:1.5; text-align:center; background-color:#0c2f71; color:#fff;}

.n_box5_ul li .div .div_l .s1{ font-size:72px; line-height:1.1;}

.n_box5_ul li .div .div_r{width:76%; padding:40px 0px;}

.n_box5_ul li .div .div_r_t{width:100%; height:40px; line-height:40px; overflow:hidden; margin-bottom:20px; font-size:25px; font-weight:bold;}

.n_box5_ul li .div .div_r_c{width:100%; height:75px; line-height:25px; overflow:hidden; text-align:justify; text-indent:35px;}




.n_box9{ padding:20px 0px 60px 0px; text-align:center; line-height:1.6; color:#999999; font-size:16px;}

.n_box9_t{ margin-bottom:70px; background-color:#fbfbfd; width:100%;box-shadow: 0px 7px 19px 0px rgba(0,0,0,0.15); padding:30px 3.3% 25px 3.3%; }

.n_box9_t li{width:100%; float:left; }

.n_box9_t li .div{width:100%;}

.n_box9_t li .div_l{ padding:10px 0px; line-height:1.6; color:#4E5969; font-size:18px;}




@media  (max-width: 1399px) {
.n_box9_t li .div_r a{ padding:0px 20px; margin-bottom:10px; margin-right:10px; float:left; height:44px; line-height:44px; color:#4E5969; font-size:16px; display:inline-block; float:left; background-color:#fbfbfd;-moz-border-radius: 22px;      /* Gecko browsers */

-webkit-border-radius: 22px;   /* Webkit browsers */

border-radius:22px;            /* W3C syntax */}
}
@media (min-width: 1400px) and (max-width: 1439px) {
.n_box9_t li .div_r a{ padding:0px 20px; margin-bottom:10px; margin-right:10px; float:left; height:44px; line-height:44px; color:#4E5969; font-size:16px; display:inline-block; float:left; background-color:#fbfbfd;-moz-border-radius: 22px;      /* Gecko browsers */

-webkit-border-radius: 22px;   /* Webkit browsers */

border-radius:22px;            /* W3C syntax */}
}
@media (min-width: 1440px) and (max-width: 1919px)  {
.n_box9_t li .div_r a{ padding:0px 20px; margin-bottom:10px; margin-right:10px; float:left; height:44px; line-height:44px; color:#4E5969; font-size:16px; display:inline-block; float:left; background-color:#fbfbfd;-moz-border-radius: 22px;      /* Gecko browsers */

-webkit-border-radius: 22px;   /* Webkit browsers */

border-radius:22px;            /* W3C syntax */}
}

@media (min-width: 1920px) {
.n_box9_t li .div_r a{ padding:0px 20px; margin-bottom:10px; margin-right:50px; float:left; height:44px; line-height:44px; color:#4E5969; font-size:18px; display:inline-block; float:left; background-color:#fbfbfd;-moz-border-radius: 22px;      /* Gecko browsers */

-webkit-border-radius: 22px;   /* Webkit browsers */

border-radius:22px;            /* W3C syntax */}
}








.n_box9_t li .div_r a:hover,.n_box9_t li .div_r a.activetop{ background-color:#0c2f71; color:#fff;}

.n_box9_c{width:100%;}

.n_box9_c li{width:31.5%; float:left; margin-right:2.75%; padding-bottom:60px;}

.n_box9_c li .a_img{width:100%; position:relative; display:inline-block; overflow:hidden;}

.n_box9_c li .a_img img{width:100%; float:left;height: 350px; object-fit:cover}

.n_box9_c li:nth-child(3n){ margin-right:0px;}

.n_box9_c li .a_text{width:100%; padding:20px 5% 20px 5%; background:url(../images/tb_50.png) repeat; position:absolute; left:0px; bottom:0px; z-index:1;}

.n_box9_c li .a_text_c{width:100%;overflow:hidden; color:#fff; font-size:18px;text-align: center;}

.n_box9_c li .a_img:hover .a_text{ background:url(../images/tb_51.png) repeat;}


/*css3*/
.Fillet
{
	-moz-border-radius: 15px;      /* Gecko browsers */
    -webkit-border-radius: 15px;   /* Webkit browsers */
    border-radius:15px;            /* W3C syntax */

}
.Rotation img
{
	transition:All 0.4s ease-in-out;
   -webkit-transition:All 0.4s ease-in-out;
   -moz-transition:All 0.4s ease-in-out;
   -o-transition:All 0.4s ease-in-out;
}
.Rotation:hover img
{
	transform:rotate(360deg);

    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    -ms-transform:rotate(360deg);
}
.Amplification img
{
	
	transition:400ms; 
	filter: Alpha(Opacity=100);
	opacity: 1;
}
.Amplification:hover img
{
	filter: Alpha(Opacity=100); 
	opacity: 1; 
	-webkit-transform:scale(1.14); 
	transform:scale(1.14);
}
.Amplification1 .img1
{
	
	transition:400ms; 
	filter: Alpha(Opacity=100);
	opacity: 1;
}
.Amplification1:hover .img1
{
	filter: Alpha(Opacity=100); 
	opacity: 1; 
	-webkit-transform:scale(1.14); 
	transform:scale(1.14);
}
	
.set_box_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}




.n_box10{width:100%;}

.n_box10_l{width:67.3%;}

.n_box10_r{width:27%; background-color:#153d8a; color:#fff; padding:15px 0px 25px 0px;}

.n_box10_r_t{width:100%; padding-left:25px;}

.n_box10_r_t .s1{ border-bottom:1px solid #fff; padding:15px 0px; line-height:1.5; font-size:25px; font-weight:800; width:100%; display:inline-block;letter-spacing: 0.25px;}

.n_box10_r_t1{width:100%; padding:15px 0px; line-height:1.4; padding-right:25px; margin-bottom:50px; text-align:right; font-size:18px; font-weight:800;letter-spacing: 0.05px; text-transform: uppercase;}

.n_box10_r_c{width:100%; padding:0px 25px;}

.n_box10_r_c li{width:100%; float:left; padding-bottom:30px;}

.n_box10_r_c li .a_img{width:100%; position:relative; display:inline-block; overflow:hidden;}

.n_box10_r_c li .a_img img{width:100%; float:left;}

.n_box10_r_c li .a_text{width:100%; padding:30px 5% 25px 5%; background:url(../images/tb_50.png) repeat; position:absolute; left:0px; bottom:0px; z-index:1;}

.n_box10_r_c li .a_text_c{    width: 100%;
    /* height: 60px; */
    /* line-height: 30px; */
    overflow: hidden;
    color: #fff;
    font-size: 18px;}

.n_box10_r_c li .a_img:hover .a_text{ background:url(../images/tb_51.png) repeat;}


.n_box4d{width:100%; padding:0px 7%;}

.n_box4d_t{width:100%; padding:15px 0px; font-size:25px; font-weight:bold; line-height:1.6; text-align:center;color:#000;}

.n_box4d_t1{width:100%; padding:5px 0px; text-align:center; line-height:1.6; color:#999; font-size:14px;}

.n_box4d_c{width:100%; padding:40px 0px 50px 0px; font-size:18px; line-height:2; overflow:hidden; color:#000;}

.n_box4d_c.active{ padding-bottom:0px;}

.n_box4d_c img{ max-width:100%; height:auto !important;}

.n_box4d_c p{ line-height:2;}

.n_box4d_b{width:100%;}

.n_box4d_b .a1{width:50%; line-height:1.7; color:#000; font-size:16px; float:left;}

.n_box4d_b .a1:hover{ text-decoration:none; color:#0c2f71;}

.n_box4d_b .a1.a2{ text-align:right;}



img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
}