/* General Body Styles */
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	color: #333;
	font-size: 14px;
}

.container {
	width: 1160px;
	margin: 0 auto;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
	color: #333;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Header */
header {
	background: url(../img/bg1.png) no-repeat;
	background-size: 100% 100%;
	color: white;
	padding: 15px 0;
}

header .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 0;
}

.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;

}

header .logo {
	display: flex;
	align-items: center;
}

header .logo img {
	margin-right: 15px;
}

header .logo h1 {
	font-size: 26px;
	font-weight: 500;
	margin: 0;
}

header .logo h1 span {
	font-weight: 300;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #fff;
}

.search-bar {
	display: flex;
	align-items: center;
}

.search-bar input {
	border: 1px solid #ccc;
	padding: 8px 12px;
	border-radius: 4px 0 0 4px;
	background-color: #6181c0;
	color: #fff;
	border: none;
	outline: none;
        height: 32px;
box-sizing: border-box;
}

.search-bar input::placeholder {
	color: #fff;
}

.search-bar button {
	border: none;
	background: #6181c0 url(../img/search.png) no-repeat center center;
	color: #6181c0;
	padding: 16px 16px;
	cursor: pointer;
	border-radius: 0 4px 4px 0;
}

.mob-search {
	display: none;
	cursor: pointer;
	position: absolute;
	z-index: 1000000;
	right: 60px;
	top: 25px;
}

.mob-search img {
	width: 22px;
}

.search {
	position: absolute;
	z-index: 1000000;
	height: 3.125rem;
	display: none;
	width: 80%;
	left: 10%;
	top: 6.25rem;
}

.ss-div {
	width: 100%;
	height: 3.125rem;
	margin-top: 0.875rem;
	background: rgba(255, 255, 255, 0.9);
	line-height: 3.125rem;
	overflow: hidden;
	font-size: 0;
	display: flex;
	justify-content: space-between;
}

.ss-div .ss-btn {
	border: none;
	background: #003399 url(../img/search.png) no-repeat center center;
	background-size: 25px;
	width: 20%;
	height: 3.125rem;
	text-align: center;
	color: #ffffff;
	line-height: 3.125rem;
	cursor: pointer;
	padding: 0;
	font-size: 1.125rem;
	letter-spacing: 2px;
}

.ss-div .ss-ipt {
	padding: 0;
	padding-left: 1.25rem;
	box-sizing: border-box;
	border: none;
	background: transparent;
	color: #333333;
	width: 80%;
	height: 3.125rem;
	text-align: left;
	line-height: 3.125rem;
	border: 0;
	outline: none;
}

.ss-div .ss-ipt::-webkit-input-placeholder {
	font-size: 0.875rem;
	color: #757575;
}

/*导航*/
#nav {
	width: 100%;
	height: 45px;
	position: relative;
	z-index: 1000000;
	background: #ffffff;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.nav {
	font-size: 16px;
}

.fNav {
	display: flex;
	justify-content: space-between;
}

.fNav li {
	color: #333333;
	position: relative;
	text-align: center;
	transition: all 0.2s;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

.fNav>li::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	background: transparent;
	bottom: 0;
	left: 0;
}

.fNav li a {
	display: inline-block;
	padding: 10px 10px;
	position: relative;
	text-align: center;
	color: #333333;
	/* border-bottom:4px solid transparent; */
	transition: all 0.2s;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

/* .fNav>li.active>a {
	border-bottom:4px solid #e7a321;
}
.fNav>li:hover>a {
	border-bottom:4px solid #e7a321;
} */

.fNav li:hover .sNav>li {
	height: 45px;
	overflow: visible;
}

.sNav {
	position: absolute;
	left: 0;
	min-width: 100%;
}

.sNav li {
	text-align: center;
	margin: 0;
	padding: 0 10px;
	min-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	height: 0;
	-webkit-transition: height 400ms ease, visibility 400ms ease;
	-moz-transition: height 400ms ease, visibility 400ms ease;
	-o-transition: height 400ms ease, visibility 400ms ease;
	transition: height 400ms ease, visibility 400ms ease;
	white-space: nowrap;
	background: #083a83;
	color: #ffffff;
}

.sNav li a {
	border: none;
	color: #ffffff;
	padding: 10px 0;
}

.sNav li:hover {
	background: #fff;
}

.sNav li:hover>a {

	color: #083a83;
}

.tNav {
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 100%;
}

.tNav li {
	text-align: center;
	padding: 0 10px;
	min-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	height: 0;
	-webkit-transition: height 400ms ease, visibility 400ms ease;
	-moz-transition: height 400ms ease, visibility 400ms ease;
	-o-transition: height 400ms ease, visibility 400ms ease;
	transition: height 400ms ease, visibility 400ms ease;
	white-space: nowrap;
	background: #083a83;
	color: #ffffff;
}

.tNav li a {
	color: #ffffff;
}

.tNav li:hover {
	background: #fff;
}

.tNav li:hover a {
	color: #083a83;
}

.sNav li:hover .tNav li {
	height: 45px;
	overflow: visible;
}

/* Hero Section */
.main-swiper {
	display: block;
}

.main-mob-swiper {
	display: none;
}

.hero {
	text-align: center;

}

.swiper.main-swiper {
	width: 100%;
}

.main-mob-swiper .swiper-slide img,
.main-swiper .swiper-slide img {
	width: 100%;
	display: block;
}

.main-mob-swiper .swiper-slide p,
.main-swiper .swiper-slide p {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.7);
	padding: 15px 20px;
	color: #ffffff;
	font-size: 22px;
	letter-spacing: 2px;
}

.main-bullet {
	display: inline-block;
	margin: 0 6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
}

.main-bullet-active {
	background: #5277ef;
}

.swiper-button-next,
.swiper-button-prev {
	color: #ffffff !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 36px !important;
}

#mob-swiper .swiper-pagination {
	bottom: 10px !important;
}

#dl-menu {
	display: none;
}

/* Main Content */
main.container {

	padding: 30px;
	margin-top: 20px;
	margin-bottom: 20px;

}

/* blog1 */
.blog1 {
	display: flex;
	justify-content: space-between;
}

.blog1 .title {
	font-size: 24px;
	color: #ffffff;
	padding: 10px;
}

.blog1-1 .title {
	background: linear-gradient(to right, #003fa5, #0066cc);
}

.blog1-2 .title {
	background: linear-gradient(to right, #12a052, #12a052);
}

.blog1 .more {
	position: absolute;
	right: 20px;
	top: 15px;
	color: #ffffff;

}

.blog1 .more1 {
	display: block;
	background: #f9fafb;
	padding: 15px;
	text-align: center;
}

.blog1-1 .more1 {
	color: #003fa5;
}

.blog1-2 .more1 {
	color: #12a052;
}

.blog1 ul li {
	padding: 20px 10px;
	border-bottom: 1px solid #eeeeee;
	color: #999999;
	display: flex;
	font-size: 12.5px;
	flex-flow: column;
	gap: 5px;
	position: relative;
}

.blog1 ul li .tips {
	color: #999999;
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 12.5px;
}

.blog1 ul li .tips span {
	border-radius: 10px;
	padding: 3px 5px;
}

.blog1 ul li:nth-of-type(1) .tips span {
	color: #3d5bbb;
	background: #dae9fe;
}

.blog1 ul li:nth-of-type(2) .tips span {
	color: #12a052;
	background: #e0fcea;
}

.blog1 ul li:nth-of-type(3) .tips span {
	color: #c85c59;
	background: #fee2e2;
}

.blog1 ul li:nth-of-type(4) .tips span {
	color: #915fad;
	background: #f3e8ff;
}

.blog1 ul li:nth-of-type(5) .tips span {
	color: #73422c;
	background: #ffecd2;
}

.blog1 ul li p {
	font-size: 16px;
	color: #333333;
white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog1 ul li .artlink {
	position: absolute;
	right: 10px;
	bottom: 20px;
}

.blog1-1 ul li .artlink {
	color: #003fa5;
}

.blog1-2 ul li .artlink {
	color: #12a052;
}

.blog1 ul li img {
	margin: 0 5px;
}

.blog1 img {
	margin: 0 5px;
}

.blog1-1,
.blog1-2 {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background: #ffffff;
	width: 570px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* blog2 */
.blog2 {
	background: #e6f0fa;
	border-radius: 15px;
	padding: 40px 0;
	margin-top: 50px;
}

.blog2 .title {
	text-align: center;

}

.blog2 .title p {
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.blog2 .title span {
	font-size: 16px;
	color: #7c7c7c;
}

.blog2 .kecheng-swiper {
	margin-top: 30px;
}

.blog2 .kecheng-swiper .swiper-slide {
	display: flex;
	justify-content: center;
}

.blog2 .kecheng-img {
	width: 530px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.blog2 .kecheng-box {
	width: 530px;
	box-sizing: border-box;
	padding: 0 25px;
	display: flex;
	flex-flow: column;
	gap: 15px;
	justify-content: center;
	background: #ffffff;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.blog2 .kecheng-box>p:nth-of-type(1) {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}

.blog2 .kecheng-box>p:nth-of-type(2) {
	font-size: 12.5px;
	color: #003399;
}

.blog2 .kecheng-box span {
	font-size: 12.5px;
	color: #858280;
}

.blog2 .kecheng-box .more {
	width: 100%;
	text-align: center;
	color: #ffffff;
	padding: 10px 0;
	background: #003399;
	border-radius: 10px;
}

.blog2 .kecheng-box .kecheng-num {
	display: flex;
	justify-content: space-around;
	font-size: 12.5px;
	color: #858280;
	text-align: center;
}

.blog2 .kecheng-box .kecheng-num>div div {
	display: flex;
	justify-content: center;
	align-items: end;
	gap: 3px;
}

.blog2 .kecheng-box .kecheng-num>div:nth-of-type(1) div {
	color: #4971ce;
}

.blog2 .kecheng-box .kecheng-num>div:nth-of-type(2) div {
	color: #3aaf6c;
}

.blog2 .kecheng-box .kecheng-num>div:nth-of-type(3) div {
	color: #ffc03a;
}

.blog2 .swiper-button-prev,
.blog2 .swiper-button-next {
	width: 50px;
	height: 50px;
	width: 10px;
	height: 10px;
}

.blog2 .swiper-button-prev::after,
.blog2 .swiper-button-next::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border: 3px solid #000;
	border-width: 0 3px 3px 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(135deg);
}

.blog2 .swiper-button-prev::before,
.blog2 .swiper-button-next::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border: 3px solid #000;
	border-width: 0 3px 3px 0;
	position: absolute;
	top: 50%;
	left: -50%;
	transform: translate(-50%, -50%) rotate(135deg);
}

.blog2 .swiper-button-prev:hover::after,
.blog2 .swiper-button-next:hover::after {
	border-color: #000;
}

.blog2 .swiper-button-prev {
	left: 30px;
}

.blog2 .swiper-button-next {
	right: 20px;
}

.blog2 .swiper-button-next::after,
.blog2 .swiper-button-next::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* blog3 */
.blog3 {
	margin-top: 40px;
	position: relative;
}

.blog3 .title {
	font-size: 30px;
	font-weight: bold;
}

.blog3 .more {
	color: #003fa5;
	position: absolute;
	right: 0;
	top: 10px;
}

.blog3-box {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.blog3-box div {
	width: 370px;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px;
	background: #ffffff;
	border-radius: 15px;
	padding-bottom: 15px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.blog3-box div img {
	width: 100%;
}

.blog3-box div p {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}

.blog3-box div span {
	font-size: 12.5px;
	color: #979593;
}

.blog3-box div a {
	width: 90%;
	background: #003399;
	border-radius: 10px;
	color: #ffffff;
	padding: 10px 0;
	text-align: center;
	font-size: 12.5px;
}

/* blog4 */
.blog4 {
	background: #e6f0fa;
	border-radius: 15px;
	padding: 40px 0;
	margin-top: 50px;
	position: relative;
}

.blog4 .title {
	text-align: center;

}

.blog4 .title p {
	font-size: 30px;
	color: #000000;
	font-weight: bold;
}

.blog4 .title span {
	font-size: 16px;
	color: #7c7c7c;
}

.pingjia-swiper {
	margin-top: 30px;
}

.pingjia-swiper .swiper-slide {}

.pingjia-swiper .swiper-slide .blog4-box {
	margin: 0 auto;
	width: 920px;
	background: #ffffff;
}

.blog4-box {
	display: flex;
	flex-flow: column;
	align-items: center;
	border-radius: 10px;
	padding: 30px 0;
	gap: 20px;
}

.blog4-box .title {
	font-size: 19px;
	color: #000000;
	font-weight: bold;
}

.blog4-box .title1 {
	font-size: 17px;
	color: #ffffff;
	background: #003399;
	font-weight: bold;
	padding: 6px 10px;
	border-radius: 10px;
}

.blog4-box .numtwo {
	width: 90%;
	display: flex;
	justify-content: space-between;
}

.blog4-box .numtwo div {
	padding: 30px 0;
	width: 400px;
	border-radius: 10px;
	gap: 8px;
	display: flex;
	flex-flow: column;
	align-items: center;
}

.blog4-box .numtwo div p {
	font-size: 30px;
}

.blog4-box .numtwo div span {
	font-size: 16px;
	color: #8f94a2;
}

.blog4-box .numtwo div:first-of-type {
	background: #eff6ff;
}

.blog4-box .numtwo div:first-of-type p {
	color: #1e63ec;
}

.blog4-box .numtwo div:last-of-type {
	background: #f0fdf4;
}

.blog4-box .numtwo div:last-of-type p {
	color: #16a34a;
}

.blog4-box select {
	border: none;
	padding: 10px 15px;
	background: #003399;
	color: #ffffff;
	border-radius: 10px;
	font-size: 17px;
	appearance: none;
	background-image: url(../img/down.png);
	background-repeat: no-repeat;
	background-position: 200px center;
	padding-right: 30px;
}

.blog4-box select:nth-of-type(2) {
	background: #16a34a;
	background-image: url(../img/down.png);
	background-repeat: no-repeat;
	background-position: 200px center;
	padding-right: 30px;
}

.blog4-box select option {
	background: #ffffff;
	color: #333333;
}



.blog4-box .tableBox1,
.blog4-box .tableBox2 {
	width: 90%;
}

.blog4-box table {
	border: 1px solid #dde0e4;
	border-collapse: collapse;
	width: 100%;
}

.blog4-box tr,
.blog4-box td,
.blog4-box th {
	border: 1px solid #dde0e4;
}

.blog4-box .tableBox1 tr:nth-of-type(odd) {
	background: #f3f4f6;
}

.blog4-box .tableBox1 tr:first-of-type {
	background: #f9fafb;
}

.blog4-box .tableBox2 tr:nth-of-type(odd) {
	background: #f0fdf4;
}

.blog4-box .tableBox2 tr:first-of-type {
	background: #dcfce7;
}

.blog4-box tr td,
.blog4-box tr th {
	padding: 8px 10px;
}

.blog4-box tr td {
	text-align: center;
}

.blog4-box tr td:nth-of-type(3) {
	text-align: left;
}

.blog4-box .tableBox1 tr td:last-of-type {
	color: #01923d;
}

.blog4-box .tableBox2 tr td:last-of-type {
	color: #e83200;
}

.blog4-box .tableBox2 tr td:nth-of-type(6) {
	color: #2046e9;
}

.pingjia-swiper .swiper-button-next,
.pingjia-swiper .swiper-button-prev {
	color: #000000 !important;
}

.pingjia-swiper .swiper-button-next {
	right: 70px;
--swiper-navigation-size:24px;
}

.pingjia-swiper .swiper-button-prev {
	left: 70px;
--swiper-navigation-size:24px;
}

.blog4 .main-bullet {
	display: inline-block;
    margin: 0 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}
.blog4  .main-bullet-active{
	background: #003399;
}
.blog4 .swiper-horizontal>.swiper-pagination-bullets,
.blog4 .swiper-pagination-bullets.swiper-pagination-horizontal,
.blog4 .swiper-pagination-custom,
.blog4 .swiper-pagination-fraction{
	bottom:100px !important;
}
.blog4-bottom{
	background: #ffffff;
	color:#8c9298;
	font-size:12.5px;
	text-align: center;
	padding:10px 0;
	width:60%;
	margin:0 auto;
	border-radius: 10px;
	margin-top:50px;
}
/* Footer */
footer {
	background: #131b2d;
	color: #fff;
	padding-top: 30px;
	font-size: 14px;
}

footer .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

footer .footer-logo {

	width: 27%;
}

footer .links h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: white;
	font-weight: 500;
	margin-top: 0;
}

footer .link-columns {
	display: flex;

	gap: 60px;
}

footer .link-columns ul {
	display: flex;
	flex-flow: column;
flex-wrap: wrap;
    height: 160px;
    gap: 0 40px;
	/* display: grid
;
    grid-template-columns: repeat(4, 1fr); */
}

footer .link-columns ul li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

footer .link-columns ul li img {
	height: auto;
}

footer .link-columns ul li a {
	color: #fff;
}

footer .link-columns ul li a:hover {
	color: #ffa726;
	text-decoration: underline;
}

footer .copyright {
	text-align: center;
	padding: 20px 0;
	margin-top: 30px;
	font-size: 12px;
	line-height: 1.8;
	background: #131b2d;
}