* {
	padding: 0;
	margin: 0;
	font-size: .32rem;
	font-family: "microsoft yahei";
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	display: block;
}
:root {
            --primary-color: #162582;
            --accent-color: #3498db;
            --text-color: #ffffff;
            --hover-color: #020c49;
            --transition-speed: 0.3s;
        }
 /* 顶部导航条 */
        .top-bar {
            background-color: var(--primary-color);
            color: var(--text-color);
            height: 60px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* 汉堡菜单图标 */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            border-radius: 3px;
            transition: all var(--transition-speed);
        }
        
        /* 抽屉式菜单容器 */
        .drawer {
            position: fixed;
            top: 60px;
            left: 0;
            width: 280px;
            height: calc(100% - 60px);
            background-color: #162582;
            color: var(--text-color);
            transform: translateX(-100%);
            transition: transform var(--transition-speed);
            overflow-y: auto;
            z-index: 99;
            -webkit-overflow-scrolling: touch; /* iOS滚动平滑 */
        }
        
        /* 菜单项 */
        .menu-item {
            padding: 15px 20px;
            border-bottom: 1px solid #48518a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center; color:#fff;
        }
        .menu-item:hover {
            background-color: var(--hover-color); color:#ffffff;
        }
        
        /* 子菜单 */
        .submenu {
            max-height: 0;
            overflow: hidden;
            background-color: var(--hover-color);
            transition: max-height var(--transition-speed) ease;
        }
        .submenu a{ color:#ffffff;  }
        
        .submenu.active {
            max-height: 1000px; /* 足够容纳子菜单 */
        }
        
        .submenu-item {
            padding: 12px 20px 12px 40px;
            display: block;
            border-bottom: 1px solid #2c3e50;
        }
        
        .submenu-item:hover {
            background-color: #020c49;
        }
        
        /* 箭头图标 */
        .arrow {
            display: inline-block;
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 6px solid var(--text-color);
            transition: transform var(--transition-speed);
        }
        
        .active .arrow {
            transform: rotate(90deg);
        }
        
        /* 内容区域 */
        .content {
            margin-top: 60px;
            padding: 20px;
            transition: margin-left var(--transition-speed);
        }
        
        /* 遮罩层 */
        .overlay {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 98;
            display: none;
        }
        
        /* 菜单激活状态 */
        body.menu-active .drawer {
            transform: translateX(0);
        }
        
        body.menu-active .overlay {
            display: block;
        }
        
        /* 在桌面端，菜单默认打开 */
        @media (min-width: 992px) {
            body {
                margin-left: 280px;
            }
            
            .drawer {
                transform: translateX(0);
            }
            
            .content {
                margin-left: 280px;
            }
            
            .hamburger {
                display: none;
            }
        }
        
        /* 兼容IE11 */
        @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
            .submenu {
                display: none;
            }
            
            .submenu.active {
                display: block;
            }
            
            .drawer {
                transition: none;
            }
            
            .active .arrow {
                -ms-transform: rotate(90deg);
            }
        }
.top { 
	width: 100%;
	height: 1.1rem;
	background: url(../img/top_bg.jpg) no-repeat top center;
	background-size: 100% 100%;
}

.top_img {
	float: left;
	width: 95%;
	margin-left: .2rem;
	padding-top: .25rem;
}

.top_img img {
	width: 100%;
	height: 100%;
}

.kong {
	width: 100%;
	clear: both;
	height: 1px;
	margin: 0 auto;
}

.kong10 {
	width: 100%;
	clear: both;
	height: .25rem;
	margin: 0 auto;
}

.banner {
	width: 100%;
	height: 100%;
}

.m_hd {
	width: 100%;
	height: 4.5rem;
	clear: both;
	margin: 0 auto;
}

.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	left: 0;
	top: 0;
}

.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}

.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}

.slide_container {
	position: relative;
	float: left;
	width: 100%;
}

.slide {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

.slide li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}

.slide img {
	display: block;
	position: relative;
	z-index: 1;
	height: auto;
	width: 100%;
	border: 0;
	height: 4.5rem;
}

.slide_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 52%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 61px;
	width: 38px;
	background: transparent url("../img/themes.gif") no-repeat left top;
	margin-top: -45px;
}

.slide_nav:active {
	opacity: 1.0;
}

.slide_nav.next {
	left: auto;
	background-position: right top;
	right: 0;
}

.focus {
	position: relative;
	width: 95%;
	height: 3rem;
	margin: 0 auto;
}

.focus img {
	width: 100%;
	height: 3rem;
	border-radius: .2rem;
}

.focus .btn {
	position: absolute;
	bottom: 34px;
	overflow: hidden;
	zoom: 1;
}

.focus .btn a {
	position: relative;
	display: inline;
	width: 13px;
	height: 13px;
	border-radius: 7px;
	margin: 0 5px;
	color: #B0B0B0;
	font: 12px/15px "\5B8B\4F53";
	text-decoration: none;
	text-align: center;
	outline: 0;
	float: left;
	background: #D9D9D9;
}

.focus .btn a:hover,
.focus .btn a.current {
	cursor: pointer;
	background: #fc114a;
}

.focus .fPic {
	position: absolute;
	left: 0px; width:100%; height:3rem;
	top: 0px;
}

.focus .D1fBt {
	overflow: hidden;
	zoom: 1;
	height: 16px;
	z-index: 10;
}

.focus .shadow {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0px;
	z-index: 10;
	height: 30px;
	line-height: 30px;
	background: rgba(0, 0, 0, 0.6);
	filter: progid:DXImageTransform.Microsoft.gradient( GradientType=0, startColorstr='#80000000', endColorstr='#80000000')\9;
	display: block;
	text-align: left;
	border-radius: 0 0 .2rem .2rem;
}

.focus .shadow a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	overflow: hidden;
	margin-left: 10px;
	font-family: "\5FAE\8F6F\96C5\9ED1";
}

.focus .fcon {
	position: relative;
	width: 100%;
	float: left;
	display: none;
}

.focus .fcon img {
	display: block;
}

.focus .fbg {
	bottom: 3px;
	right: 10px;
	position: absolute;
	height: 21px;
	text-align: center;
	z-index: 200;
}

.focus .fbg div {
	margin: 4px auto 0;
	overflow: hidden;
	zoom: 1;
	height: 14px
}

.focus .D1fBt a {
	position: relative;
	display: inline;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	margin: 0 5px;
	color: #B0B0B0;
	font: 10px/12px "\5B8B\4F53";
	text-decoration: none;
	text-align: center;
	outline: 0;
	float: left;
	background: #D9D9D9;
}

.focus .D1fBt .current,
.focus .D1fBt a:hover {
	background: #fc114a;
}

.focus .D1fBt img {
	display: none
}

.focus .D1fBt i {
	display: none;
	font-style: normal;
}

.focus .prev,
.focus .next {
	position: absolute;
	width: 30px;
	height: 54px;
	background: url(../img/focus_btn.png) no-repeat;
	font-size: .16rem;
}

.focus .prev {
	top: 50%;
	margin-top: -20px;
	left: 0;
	background-position: -8px -81px;
	cursor: pointer;
}

.focus .next {
	top: 50%;
	margin-top: -20px;
	right: 0;
	background-position: -45px -81px;
	cursor: pointer;
}

.focus .prev:hover {
	background-position: -8px -7px;
}

.focus .next:hover {
	background-position: -45px -7px;
}

.row {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row_tab {
	width: 95%;
	height: 1.06rem;
	margin: 0 auto;
	background: url(../img/line.jpg) repeat-x;
}

.row_tab label {
	min-width: 2.5rem;
	cursor: pointer;
	text-align: center;
	float: left;
	height: .76rem;
	background: #e5e5e5;
	color: #333333;
	border-radius: .15rem;
	overfloe: hidden;
	line-height:.76rem;
	margin: 15px 0 0 15px;
}

.row_tab .selected1 {
	width: 2.5rem;
	color: #fff;
	text-align: center;
	height: .76rem;
	line-height: .76rem;
	background: #162582;
	border-radius: .15rem;
}

.selected1 a:link {
	font-size: .38rem;
	color: #fff;
	text-decoration: none;
}

.selected1 a:visited {
	font-size: .38rem;
	color: #fff;
	text-decoration: none;
}

.selected1 a:hover {
	font-size: .38rem;
	color: #fff;
	text-decoration: none;
}

.selected1 a:active {
	font-size: .38rem;
	color: #fff;
}

.close-link1 a:link {
	font-size: .38rem;
	color: #222222;
	text-decoration: none;
}

.close-link1 a:visited {
	font-size: .38rem;
	color: #222222;
	text-decoration: none;
}

.close-link1 a:hover {
	font-size: .38rem;
	color: #222222;
	text-decoration: none;
}

.close-link1 a:active {
	font-size: .38rem;
	color: #222222;
}

.row-rb {
	width: 94%;
	clear: both;
	margin: 10px auto 0 auto;
}

.row-rb ul li {
	line-height: .60rem;
	height: .60remx;
	font-size: .32rem;
	padding-left: 20px;
}

.row-rb ul li a {
	color: #333333;
	font-size: .32rem;
}

.listui li {
	height: .60rem; 	line-height: .60rem;
	background: url(../img/icon.png) no-repeat center left;
	overflow: hidden;
}

.site {
	width: 100%;
	height: .64rem;
}

.site img {
	width: 100%;
	height: 100%;
}

.row1 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row1_tab {
	width: 95%;
	height: 76px;
	margin: 0 auto;
	background: url(../img/line.jpg) repeat-x;
}

.row1_tab a {
	display: block;
	float: left;
	color: #FFFFFF;
	background: #162582;
	height: 46px;
	text-align: center;
	margin-left: 20px;
	width: 150px;
	line-height: 46px;
	margin-top: 15px;
	font-size: .38rem;
}

.row1-list {
	width: 94%;
	clear: both;
	margin: 5px auto 5px;
}

.row1-list ul li {
	line-height: .60rem;
	padding-left: 20px;
}

.row1-list ul li a {
	color: #333333;
	font-size: .32rem;
}

.listui1 li {
	height:.60rem;
	background: url(../img/icon1.png) no-repeat center left;
	overflow: hidden;
}

.row2 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row2-t {
	width: 100%;
	height: 58px;
	background: #f5f5f5;
	text-align: center;
	line-height: 58px;
	color: #162582;
	font-size: .34rem;
}

.row2-t a {
	color: #162582;
	font-size: .34rem;
}

.row2-b {
	width: 95%;
	clear: both;
	margin: 15px auto;
	height: 174px;
}

.row2-b img {
	width: 100%;
	height: 100%;
}

.site1 {
	width: 100%;
	height: .7rem;
}

.site1 img {
	width: 100%;
	height: 100%;
}

.row3 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row3_tab {
	width: 95%;
	height: 76px;
	margin: 0 auto;
	background: url(../img/line.jpg) repeat-x;
}

.row3_tab h2 {
	float: left;
	color: #FFFFFF;
	background: #162582;
	height: 46px;
	text-align: center;
	margin-left: 20px;
	width: 150px;
	line-height: 46px;
	margin-top: 15px;
	font-size: .38rem;
	font-weight: normal;
}

.row3_tab a {
	display: block;
	float: left;
	color: #FFFFFF;
	background: #162582;
	height: 46px;
	text-align: center;
	margin-left: 20px;
	width: 150px;
	line-height: 46px;
	margin-top: 15px;
	font-size: .38rem;
}

.row3-b {
	width: 98%;
	margin: 0 auto;
}

#marqueeblock {
	width: 98%;
	height: 290px;
	overflow: hidden;
	margin: 10px auto 0;
}

.marqueeblock_ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.marqueeblock_ul li {
	float: left;
	display: block;
	width: 210px;
	height: 290px;
	text-align: center;
	line-height: 35px;
	font-size: 16px;
}

.marqueeblock_ul li a {
	font-size: 16px;
	color: #333333;
}

.row4 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row4_b {
	width: 95%;
	clear: both;
	margin: 0 auto;
}

.row4_b ul {
	width: 100%;
}

.row4_b ul li {
	width: 45%;
	float: left;
	margin: 0 2.5% 20px;
	text-align: center;
}

.row4_b ul li img {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.row5 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row5_b {
	width: 95%;
	clear: both;
	margin: 0 auto;
}

.row5_b ul {
	width: 100%;
}

.row5_b ul li {
	width: 45%;
	float: left;
	margin: 0 2.5% 10px;
	text-align: center;
	font-size: .32rem;
	line-height: .48rem;
}

.row5_b ul li img {
	width: 100%;
	height: 100%;
	margin: 0 auto 5px;
}

.row5_tab {
	width: 95%;
	height: 76px;
	margin: 0 auto;
	background: url(../img/line.jpg) repeat-x;
}

.row5_tab h2 {
	float: left;
	font-weight: normal;
	color: #FFFFFF;
	background: #162582;
	height: 46px;
	margin-left: 5px;
	width: 45%;
	line-height: 46px;
	margin-top: 15px;
	font-size: .38rem;
	text-align: center;
	padding: 0 5px;
}

.row6 {
	width: 95%;
	clear: both;
	margin: 0 auto;
	border: solid 1px #dcdcdd;
	border-radius: .15rem;
}

.row6_b {
	width: 95%;
	clear: both;
	margin: 0 auto;
}

.row6-lbt {
	width: 100%;
	height: 60px;
}

.custom-select {
	width: 80%;
	padding: 10px;
	border: 2px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
	font-size: 16px;
	/* 移除默认箭头 */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	/* 添加自定义箭头 */
	background-image: url(../img/dian.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
}

.custom-select:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.footer {
	width: 100%;
	background: #162582;
	margin: 0 auto;
}

.footer p {
	line-height: 35px;
	text-align: center;
	font-size: .32rem;
	color: #FFFFFF;
	padding-top: 15px;
}