@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
ul,p{ 
  padding:0; margin:0;
}
ul {
	list-style: none;
}
html {
  font-size: 14px;
  height: 100%;
  width: 100%;
  font-family:  'Microsoft YaHei','Heiti SC';
  outline: 0;
  -webkit-text-size-adjust:none;
}
body {
  color: #333;
  background:#f4f6f9;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #0d3481;
  text-decoration: none;
}
a:active {
  color: #333;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
input::-webkit-input-placeholder{
            color:#999;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
            color:#999;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
            color:#999;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
 color:#999;
}
*:focus {outline: none;}
/*****头部*****/
header {
	width:100%;
	height:100px;
	border-bottom:1px solid #e4e4e4;
	background: #fff;
}
.header-con{
	width:1200px;
	margin:0 auto;
	display: flex;
    align-items: center;
	height: 100%;
}
.logo-head {
	display: block;
}
.logo-head img {
	display: block;
}
.list-nav-head {
	margin: 0 36px;
	height: 100%;
	display: flex;
	align-items: center;
	width: 0;
	flex: 1;
}
.list-nav-head li{
	margin-right: 32px;
}
.list-nav-head li a {
	color: #666;
	font-size: 16px;
}
.list-nav-head li.active a {
	color: #0d3481;
}
.list-nav-head li a:hover {
	color: #0d3481;
}
.r-nav-head {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.laugh-head {
	margin-right: 24px;
}
.padlr6 {
	padding:0 6px;
}
.marr24 {
	margin-right: 24px;
}
.marr10 {
	margin-right: 10px;
}
.link-reg {
	padding: 4px 12px;
	border-radius: 16px;
	background: #0d3481;
	color: #fff;
	display: block;
}
button:hover {
	background:#1242a2;
	cursor: pointer;
}
.font18{
	font-size: 18px;
}
.fontbold {
	font-weight: 600;
}
.marr8 {
	margin-right: 8px;
}
.color-gray {
	color:#999;
}
.text-r {
	text-align:right;
}
.layout-bottom {
	padding-top: 48px;
	background: #0d1c38;
	width: 100%;
}
.head-bottom {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 48px;
}
.list-bottom {
	
}
.tit-bottom {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #fff;
}
.node-bottom {
	margin-bottom: 24px;
	color: #dddcdc;
	font-size: 16px;
	display: block;
	max-width: 300px;
}
.node-bottom:hover {
	color: #fff;
	text-decoration: underline;
}
.node-bottom:active {
	color: #dddcdc;
}
.node-bottom:last-child {
	margin-bottom:0;
}
.bot-bottom {
	width: 100%;
	text-align: center;
	padding: 24px 0;
	border-top: 1px solid #2d3a53;
	color: #fff;
}
.logo-bottom {
	display: block;
	margin-top:20px;
}
.font12{
	font-size: 12px;
	
}
.marb10 {
	margin-bottom: 10px;
}
.marlr10 {
	margin: 0 10px;
}
.marr20 {
	margin-right: 20px;
}
.color-mgray {
	color: #666;
}
.font24 {
	font-size: 24px;
}
.font20 {
	font-size: 20px;
}
.color-white {
	color: #fff;
}
.marb20 {
	margin-bottom: 20px;
}
.color-blue {
	color: #0d3481;
}
.color-red {
	color: #fc3838;
}
.wid100 {
	width: 100%;
}
.marb32 {
	margin-bottom: 32px;
}
/**********20251028**********/
.list-nav-head li a {
	font-size: 14px;
}
/*******toastr-loading样式**********/
.toastr-loading .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}