﻿@charset "utf-8";
@import url("../fonts/font.css");

* {
	margin: 0;
	padding: 0;
}

body {
	width: 100%;

	margin: 0 auto;
	font-family: 'Microsoft YaHei';
	font-weight: normal;
	font-size: 14px;
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li,
p {
	display: inline-block;
	list-style-type: none;
	font-size: 15px;
	margin: 0;
}

a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}

a,
a:focus {
	border: none;
	outline: none;
	height: auto;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	border: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}
.d-block { display: block; }
    .d-inline { display: inline; }
    .d-inline-block { display: inline-block; }
    .d-flex { display: flex; }
    .d-inline-flex { display: inline-flex; }
    .d-grid { display: grid; }
    .d-none { display: none; }

    .flex-row { flex-direction: row; }
    .flex-col { flex-direction: column; }
    .flex-wrap { flex-wrap: wrap; }
    .flex-nowrap { flex-wrap: nowrap; }
    .justify-start { justify-content: flex-start; }
    .justify-center { justify-content: center; }
    .justify-end { justify-content: flex-end; }
    .justify-between { justify-content: space-between; }
    .justify-around { justify-content: space-around; }
    .justify-evenly { justify-content: space-evenly; }
    .items-start { align-items: flex-start; }
    .items-center { align-items: center; }
    .items-end { align-items: flex-end; }
    .items-baseline { align-items: baseline; }
    .items-stretch { align-items: stretch; }
    .content-center { align-content: center; }
    .flex-1 { flex: 1; }
    .flex-auto { flex: auto; }
    .flex-none { flex: none; }

    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
    .gap-4 { gap: 4px; }
    .gap-8 { gap: 8px; }
    .gap-12 { gap: 12px; }
    .gap-16 { gap: 16px; }

    .relative { position: relative; }
    .absolute { position: absolute; }
    .fixed { position: fixed; }
    .sticky { position: sticky; }
    .top-0 { top: 0; }
    .right-0 { right: 0; }
    .bottom-0 { bottom: 0; }
    .left-0 { left: 0; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
    .top-50 { top: 50%; }
    .left-50 { left: 50%; }
    .translate-50 { transform: translate(-50%, -50%); }

    .w-0 { width: 0; }
    .w-25 { width: 25%; }
    .w-50 { width: 50%; }
    .w-75 { width: 75%; }
    .w-full { width: 100%; }
    .w-auto { width: auto; }
    .w-100 { width: 100px; }
    .w-200 { width: 200px; }
    .w-300 { width: 300px; }
    .w-400 { width: 400px; }
    .h-0 { height: 0; }
    .h-25 { height: 25%; }
    .h-50 { height: 50%; }
    .h-75 { height: 75%; }
    .h-full { height: 100%; }
    .h-auto { height: auto; }
    .h-100 { height: 100px; }
    .h-200 { height: 200px; }
    .h-300 { height: 300px; }
    .h-screen { height: 100vh; }
    .max-w-full { max-width: 100%; }
    .max-w-1200 { max-width: 1200px; }
    .max-w-1000 { max-width: 1000px; }
    .max-h-full { max-height: 100%; }
    .min-w-full { min-width: 100%; }
    .min-h-full { min-height: 100%; }
    .min-h-screen { min-height: 100vh; }

    .overflow-hidden { overflow: hidden; }
    .overflow-auto { overflow: auto; }
    .overflow-scroll { overflow: scroll; }
    .overflow-x-hidden { overflow-x: hidden; }
    .overflow-y-hidden { overflow-y: hidden; }
    .overflow-x-auto { overflow-x: auto; }
    .overflow-y-auto { overflow-y: auto; }
    .text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .text-ellipsis-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .text-ellipsis-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

    /* 2. 盒模型（间距/边框） */
    .m-0 { margin: 0; }
    .m-4 { margin: 4px; }
    .m-8 { margin: 8px; }
    .m-12 { margin: 12px; }
    .m-16 { margin: 16px; }
    .m-20 { margin: 20px; }
    .m-24 { margin: 24px; }
    .m-auto { margin: auto; }

    .mt-4 { margin-top: 4px; }
    .mt-8 { margin-top: 8px; }
    .mt-12 { margin-top: 12px; }
    .mt-16 { margin-top: 16px; }
    .mt-20 { margin-top: 20px; }
    .mr-4 { margin-right: 4px; }
    .mr-8 { margin-right: 8px; }
    .mr-12 { margin-right: 12px; }
    .mr-16 { margin-right: 16px; }
    .mr-20 { margin-right: 20px; }
    .mb-4 { margin-bottom: 4px; }
    .mb-8 { margin-bottom: 8px; }
    .mb-12 { margin-bottom: 12px; }
    .mb-16 { margin-bottom: 16px; }
    .mb-20 { margin-bottom: 20px; }
    .ml-4 { margin-left: 4px; }
    .ml-8 { margin-left: 8px; }
    .ml-12 { margin-left: 12px; }
    .ml-16 { margin-left: 16px; }
    .ml-20 { margin-left: 20px; }

    .mx-4 { margin-left: 4px; margin-right: 4px; }
    .mx-8 { margin-left: 8px; margin-right: 8px; }
    .mx-12 { margin-left: 12px; margin-right: 12px; }
    .mx-auto { margin-left: auto; margin-right: auto; }
    .my-4 { margin-top: 4px; margin-bottom: 4px; }
    .my-8 { margin-top: 8px; margin-bottom: 8px; }
    .my-12 { margin-top: 12px; margin-bottom: 12px; }

    .p-0 { padding: 0; }
    .p-4 { padding: 4px; }
    .p-8 { padding: 8px; }
    .p-12 { padding: 12px; }
    .p-16 { padding: 16px; }
    .p-20 { padding: 20px; }
    .p-24 { padding: 24px; }

    .pt-4 { padding-top: 4px; }
    .pt-8 { padding-top: 8px; }
    .pt-12 { padding-top: 12px; }
    .pt-16 { padding-top: 16px; }
    .pr-4 { padding-right: 4px; }
    .pr-8 { padding-right: 8px; }
    .pr-12 { padding-right: 12px; }
    .pr-16 { padding-right: 16px; }
    .pb-4 { padding-bottom: 4px; }
    .pb-8 { padding-bottom: 8px; }
    .pb-12 { padding-bottom: 12px; }
    .pb-16 { padding-bottom: 16px; }
    .pl-4 { padding-left: 4px; }
    .pl-8 { padding-left: 8px; }
    .pl-12 { padding-left: 12px; }
    .pl-16 { padding-left: 16px; }

    .px-4 { padding-left: 4px; padding-right: 4px; }
    .px-8 { padding-left: 8px; padding-right: 8px; }
    .px-12 { padding-left: 12px; padding-right: 12px; }
    .px-16 { padding-left: 16px; padding-right: 16px; }
    .py-4 { padding-top: 4px; padding-bottom: 4px; }
    .py-8 { padding-top: 8px; padding-bottom: 8px; }
    .py-12 { padding-top: 12px; padding-bottom: 12px; }
    .py-16 { padding-top: 16px; padding-bottom: 16px; }

    .border { border: 1px solid #e5e7eb; }
    .border-none { border: none; }
    .border-t { border-top: 1px solid #e5e7eb; }
    .border-b { border-bottom: 1px solid #e5e7eb; }
    .border-l { border-left: 1px solid #e5e7eb; }
    .border-r { border-right: 1px solid #e5e7eb; }
    .border-2 { border-width: 2px; }
    .border-dashed { border-style: dashed; }
    .border-dotted { border-style: dotted; }

    .rounded-0 { border-radius: 0; }
    .rounded-2 { border-radius: 2px; }
    .rounded-4 { border-radius: 4px; }
    .rounded-6 { border-radius: 6px; }
    .rounded-8 { border-radius: 8px; }
    .rounded-12 { border-radius: 12px; }
    .rounded-16 { border-radius: 16px; }
    .rounded-20 { border-radius: 20px; }
    .rounded-full { border-radius: 50%; }
    .rounded-t-8 { border-top-left-radius: 8px; border-top-right-radius: 8px; }
    .rounded-b-8 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }

    /* 3. 样式类（颜色/文字/背景） */
    .text-left { text-align: left; }
    .text-center { text-align: center; }
    .text-right { text-align: right; }
    .text-justify { text-align: justify; }

    .text-10 { font-size: 10px; }
    .text-12 { font-size: 12px; }
    .text-14 { font-size: 14px; }
    .text-16 { font-size: 16px; }
    .text-18 { font-size: 18px; }
    .text-20 { font-size: 20px; }
    .text-22 { font-size: 22px; }
    .text-24 { font-size: 24px; }
    .text-28 { font-size: 28px; }
    .text-32 { font-size: 32px; }
    .text-36 { font-size: 36px; }

    .font-normal { font-weight: 400; }
    .font-medium { font-weight: 500; }
    .font-semibold { font-weight: 600; }
    .font-bold { font-weight: 700; }
    .font-extrabold { font-weight: 800; }
    .font-black { font-weight: 900; }

    .text-uppercase { text-transform: uppercase; }
    .text-lowercase { text-transform: lowercase; }
    .text-capitalize { text-transform: capitalize; }
    .text-italic { font-style: italic; }
    .text-line-through { text-decoration: line-through; }
    .text-underline { text-decoration: underline; }
    .text-no-underline { text-decoration: none; }

    .text-white { color: #ffffff; }
    .text-black { color: #000000; }
    .text-gray-100 { color: #f9fafb; }
    .text-gray-200 { color: #f3f4f6; }
    .text-gray-300 { color: #e5e7eb; }
    .text-gray-400 { color: #d1d5db; }
    .text-gray-500 { color: #9ca3af; }
    .text-gray-600 { color: #6b7280; }
    .text-gray-700 { color: #4b5563; }
    .text-gray-800 { color: #374151; }
    .text-gray-900 { color: #1f2937; }
    .text-primary { color: #165dff; }
    .text-success { color: #00b42a; }
    .text-warning { color: #ff7d00; }
    .text-danger { color: #f53f3f; }
    .text-info { color: #86909c; }

    .bg-transparent { background-color: transparent; }
    .bg-white { background-color: #ffffff; }
    .bg-black { background-color: #000000; }
    .bg-gray-50 { background-color: #f9fafb; }
    .bg-gray-100 { background-color: #f3f4f6; }
    .bg-gray-200 { background-color: #e5e7eb; }
    .bg-gray-300 { background-color: #d1d5db; }
    .bg-gray-400 { background-color: #9ca3af; }
    .bg-gray-500 { background-color: #6b7280; }
    .bg-primary { background-color: #165dff; }
    .bg-success { background-color: #00b42a; }
    .bg-warning { background-color: #ff7d00; }
    .bg-danger { background-color: #f53f3f; }
    .bg-info { background-color: #86909c; }

    .shadow-none { box-shadow: none; }
    .shadow-xs { box-shadow: 0 0 2px rgba(0, 0, 0, 0.05); }
    .shadow-sm { box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); }
    .shadow { box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
    .shadow-md { box-shadow: 0 0 12px rgba(0, 0, 0, 0.12); }
    .shadow-lg { box-shadow: 0 0 16px rgba(0, 0, 0, 0.15); }
    .shadow-xl { box-shadow: 0 0 24px rgba(0, 0, 0, 0.2); }
    .shadow-inset { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); }
    .shadow-primary { box-shadow: 0 0 8px rgba(22, 93, 255, 0.2); }
    .shadow-success { box-shadow: 0 0 8px rgba(0, 180, 42, 0.2); }

    /* 4. 交互类 */
    .cursor-default { cursor: default; }
    .cursor-pointer { cursor: pointer; }
    .cursor-not-allowed { cursor: not-allowed; }
    .cursor-wait { cursor: wait; }
    .cursor-help { cursor: help; }
    .user-select-none { user-select: none; }
    .user-select-text { user-select: text; }
    .pointer-events-none { pointer-events: none; }
    .pointer-events-auto { pointer-events: auto; }

    .opacity-0 { opacity: 0; }
    .opacity-10 { opacity: 0.1; }
    .opacity-20 { opacity: 0.2; }
    .opacity-30 { opacity: 0.3; }
    .opacity-40 { opacity: 0.4; }
    .opacity-50 { opacity: 0.5; }
    .opacity-60 { opacity: 0.6; }
    .opacity-70 { opacity: 0.7; }
    .opacity-80 { opacity: 0.8; }
    .opacity-90 { opacity: 0.9; }
    .opacity-100 { opacity: 1; }

    /* 5. 动效类 */
    .transition { transition: all 0.3s ease; }
    .transition-fast { transition: all 0.2s ease; }
    .transition-slow { transition: all 0.5s ease; }
    .transition-transform { transition: transform 0.3s ease; }
    .transition-opacity { transition: opacity 0.3s ease; }
    .transition-bg { transition: background-color 0.3s ease; }

    .transform { transform: translate(0, 0); }
    .scale-0 { transform: scale(0); }
    .scale-50 { transform: scale(0.5); }
    .scale-90 { transform: scale(0.9); }
    .scale-95 { transform: scale(0.95); }
    .scale-100 { transform: scale(1); }
    .scale-105 { transform: scale(1.05); }
    .scale-110 { transform: scale(1.1); }
    .scale-x-100 { transform: scaleX(1); }
    .scale-x-0 { transform: scaleX(0); }
    .scale-y-100 { transform: scaleY(1); }
    .scale-y-0 { transform: scaleY(0); }

    .rotate-0 { transform: rotate(0deg); }
    .rotate-90 { transform: rotate(90deg); }
    .rotate-180 { transform: rotate(180deg); }
    .rotate-270 { transform: rotate(270deg); }
    .rotate-360 { transform: rotate(360deg); }
    .rotate-15 { transform: rotate(15deg); }
    .rotate--15 { transform: rotate(-15deg); }

    .translate-x-0 { transform: translateX(0); }
    .translate-x-50 { transform: translateX(50%); }
    .translate-x--50 { transform: translateX(-50%); }
    .translate-y-0 { transform: translateY(0); }
    .translate-y-50 { transform: translateY(50%); }
    .translate-y--50 { transform: translateY(-50%); }

    .skew-x-0 { transform: skewX(0); }
    .skew-x-10 { transform: skewX(10deg); }
    .skew-y-0 { transform: skewY(0); }
    .skew-y-10 { transform: skewY(10deg); }

    .hover-scale:hover { transform: scale(1.05); }
    .hover-scale-sm:hover { transform: scale(1.02); }
    .hover-scale-lg:hover { transform: scale(1.1); }
    .hover-opacity:hover { opacity: 0.8; }
    .hover-shadow:hover { box-shadow: 0 0 12px rgba(0, 0, 0, 0.15); }

    /* ==================== 通用场景快捷样式 ==================== */
    /* 通用容器 */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    .container-sm {
      max-width: 960px;
    }
    .container-lg {
      max-width: 1400px;
    }

    /* 按钮样式 */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      outline: none;
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-xs { padding: 4px 8px; font-size: 12px; border-radius: 4px; }
    .btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 6px; }
    .btn-md { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
    .btn-lg { padding: 12px 24px; font-size: 16px; border-radius: 8px; }
    .btn-xl { padding: 16px 32px; font-size: 18px; border-radius: 12px; }

    .btn-primary {
      background-color: #165dff;
      color: #ffffff;
    }
    .btn-primary:hover {
      background-color: #0047d9;
      box-shadow: 0 0 8px rgba(22, 93, 255, 0.2);
    }
    .btn-success {
      background-color: #00b42a;
      color: #ffffff;
    }
    .btn-success:hover {
      background-color: #009a22;
      box-shadow: 0 0 8px rgba(0, 180, 42, 0.2);
    }
    .btn-warning {
      background-color: #ff7d00;
      color: #ffffff;
    }
    .btn-warning:hover {
      background-color: #e06e00;
      box-shadow: 0 0 8px rgba(255, 125, 0, 0.2);
    }
    .btn-danger {
      background-color: #f53f3f;
      color: #ffffff;
    }
    .btn-danger:hover {
      background-color: #e02e2e;
      box-shadow: 0 0 8px rgba(245, 63, 63, 0.2);
    }
    .btn-outline {
      background-color: transparent;
      border: 1px solid #165dff;
      color: #165dff;
    }
    .btn-outline:hover {
      background-color: #165dff;
      color: #ffffff;
    }
    .btn-text {
      background-color: transparent;
      color: #165dff;
    }
    .btn-text:hover {
      background-color: rgba(22, 93, 255, 0.1);
    }
    .btn-disabled {
      opacity: 0.6;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* 表单样式 */
    .input {
      width: 100%;
      height: 40px;
      padding: 0 12px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      transition: all 0.3s ease;
    }
    .input:focus {
      border-color: #165dff;
      box-shadow: 0 0 8px rgba(22, 93, 255, 0.1);
    }
    .input-sm {
      height: 32px;
      padding: 0 8px;
      font-size: 12px;
    }
    .input-lg {
      height: 48px;
      padding: 0 16px;
      font-size: 16px;
    }
    .input-disabled {
      background-color: #f3f4f6;
      color: #9ca3af;
      cursor: not-allowed;
    }

    .textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      resize: vertical;
      transition: all 0.3s ease;
      min-height: 80px;
    }
    .textarea:focus {
      border-color: #165dff;
      box-shadow: 0 0 8px rgba(22, 93, 255, 0.1);
    }

    .checkbox {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .checkbox-checked {
      background-color: #165dff;
      border-color: #165dff;
      color: #ffffff;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 6L9 17L4 12L6 10L9 13L18 4Z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 12px;
    }

    .radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .radio-checked {
      border-color: #165dff;
      background-color: #165dff;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 8px;
    }

    /* 卡片样式 */
    .card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    .card-sm {
      padding: 12px;
    }
    .card-md {
      padding: 16px;
    }
    .card-lg {
      padding: 24px;
    }
    .card-hover:hover {
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
    }
    .card-border {
      border: 1px solid #e5e7eb;
      box-shadow: none;
    }

    /* ==================== 响应式快捷样式 ==================== */
    /* 超小屏（手机，<576px） */
    @media (max-width: 575.98px) {
      .xs-hidden { display: none !important; }
      .xs-block { display: block !important; }
      .xs-inline { display: inline !important; }
      .xs-inline-block { display: inline-block !important; }
      .xs-flex { display: flex !important; }
      .xs-grid { display: grid !important; }
      .xs-flex-col { flex-direction: column !important; }
      .xs-w-full { width: 100% !important; }
      .xs-w-auto { width: auto !important; }
      .xs-m-0 { margin: 0 !important; }
      .xs-p-0 { padding: 0 !important; }
      .xs-text-12 { font-size: 12px !important; }
      .xs-text-center { text-align: center !important; }
    }

    /* 小屏（平板，≥576px） */
    @media (min-width: 576px) and (max-width: 767.98px) {
      .sm-hidden { display: none !important; }
      .sm-block { display: block !important; }
      .sm-inline { display: inline !important; }
      .sm-inline-block { display: inline-block !important; }
      .sm-flex { display: flex !important; }
      .sm-grid { display: grid !important; }
      .sm-flex-col { flex-direction: column !important; }
      .sm-w-50 { width: 50% !important; }
      .sm-w-full { width: 100% !important; }
      .sm-text-14 { font-size: 14px !important; }
    }

    /* 中屏（平板/笔记本，≥768px） */
    @media (min-width: 768px) and (max-width: 991.98px) {
      .md-hidden { display: none !important; }
      .md-block { display: block !important; }
      .md-inline { display: inline !important; }
      .md-inline-block { display: inline-block !important; }
      .md-flex { display: flex !important; }
      .md-grid { display: grid !important; }
      .md-w-33 { width: 33.333% !important; }
      .md-w-50 { width: 50% !important; }
    }

    /* 大屏（桌面，≥992px） */
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .lg-hidden { display: none !important; }
      .lg-block { display: block !important; }
      .lg-inline { display: inline !important; }
      .lg-inline-block { display: inline-block !important; }
      .lg-flex { display: flex !important; }
      .lg-grid { display: grid !important; }
      .lg-w-25 { width: 25% !important; }
      .lg-w-33 { width: 33.333% !important; }
      .lg-w-50 { width: 50% !important; }
    }

    /* 超大屏（宽屏桌面，≥1200px） */
    @media (min-width: 1200px) {
      .xl-hidden { display: none !important; }
      .xl-block { display: block !important; }
      .xl-inline { display: inline !important; }
      .xl-inline-block { display: inline-block !important; }
      .xl-flex { display: flex !important; }
      .xl-grid { display: grid !important; }
      .xl-w-20 { width: 20% !important; }
      .xl-w-25 { width: 25% !important; }
      .xl-w-33 { width: 33.333% !important; }
    }

    

.w100 {
	/* float: left; */
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-repeat:no-repeat;
}

.bg_e7f3ff {
	background-color: #e7f3ff;
	overflow: hidden;
}

.clear {
	clear: both;
}

.li_last {
	margin-right: 0 !important;
}

.header {
}

.head {
	max-width: 1500px;
	margin: 0px auto;
	height: 140px;
	position: relative;
	z-index: 99;
}

.logo {
}

.logo a {
	width: 100%;
	height: auto;
	overflow: hidden;
	display: block;
}

.logo img {
	width: 100%;
}

.logor {
}

.toplj {
	line-height: 36px;
	margin-right:10px;
}

.toplj a,
.toplj span {
	display: inline-block;
	font-size: 16px;
	color: #666;
	margin: 0 10px;
}
.toplj a:hover{font-weight:bold; color:#014eae;}

.toplj span {
	margin: 0 5px;
}

.search {
	margin-left: 0;
	z-index: 15;
	width: 260px;
	padding: 0px;
	height: 36px;
	border-radius:0px;
	border: 1px solid #014eae;
}

.search .ssk {
	float: left;
	width: calc(100% - 50px);
	padding: 0 10px 0 10px;
	border-radius: 0;
	border: 0;
	outline: none;
	color: #333;
	line-height: 36px;
	background-color: transparent;
}

.search .ss {
	float: right;
	background:url(../img/bgsearch.png) no-repeat center center;
	width: 50px;
	height: 34px;
	border-radius: 0;
	outline: none;
	color: #fff;
	border: 0;
	border-left: 0px solid #fff;
	margin: 0px 0;
	text-align: center;
}

.header2 {
	height: 205px;
	background-color: #0367b2;
}

.header2 .dh {
	background-color: #fff;
	margin-top: 28px;
}

.dh {
	position: relative;
	z-index: 999;
	float: left;
	width: 100%;
	height: 70px;
	border-bottom: 4px solid #014eae;
}

#menu {
	position: relative;
	z-index: 9;
	zoom: 1;
	width: 100%;
	max-width: 1500px;
	text-align: center;
	height: 70px;
	margin: 0 auto;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu span {
	float: left;
	color: #fff;
	line-height: 55px;
}

#menu li {
	padding: 0px 0;
	text-align: center;
	line-height: 67px;
	height: auto;
	width: 10%;
	
	text-align: center;
	display: inline-block;
	float: left;
	position: relative;

}

#menu li::after {
	position:absolute;
	    left: 50%;
	    bottom: 0px;
	    display:block;
	    content:"";
	    width:0%;
	    height:0px;
	    background-color:#014eae;
	    transform: translateX(-50%);
	    visibility: hidden;
	    opacity: 0;
	    -webkit-transition: all .3s;
	    transition: all .3s;
}

#menu li:hover::after {
	opacity:1; width:70%;visibility: visible;
		opacity:0;
		-webkit-transition: all .3s;
		transition: all .3s;
}

#menu li:last-child {
	background: none;
}

#menu li a {
	white-space: normal;
	padding: 0 0px;
	font-size: 20px;
	text-align: center;
}

.header2 .dh #menu li a {
	color: #333;
}

#menu li:hover {}

#menu li:hover a {
	color: #014eae;
}

#menu li a:hover {}

#menu li ol {
	margin: 0;
	padding: 0;
	width: 100%;
	min-width:200px;
	_margin: 0;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top:130%;
		left: 50%;
		    z-index: 1;
		    transform: translate(-50%, 0);
		    -webkit-transform: translate(-50%, 0);
		    -moz-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		    -o-transform: translate(-50%, 0);
		
		border-top: 0px solid #014eae;
		background-color:#fff;
		opacity: 0;
		visibility: hidden;
		/*border-radius: 5px;*/
		transition: opacity .4s ease, top .45s ease;
	padding: 10px;
}

#menu li ol li {
	margin-left: 0;
	background-color: #fff;

}

#menu li:hover>ol {
	top:70px;
		opacity: 1;
		visibility: visible;
		z-index: 100;
		margin: 0;
		z-index: 1;
}

#menu ol ul {
	top: 0;
	z-index: 1;
	left: 200px;
	margin: 0 auto;
	_margin: 0;
}

#menu li ol li,
#menu li:hover ol li a {
	padding: 0px;
	white-space: normal;
	float: left;
	width: 100%;
	z-index: 1;
	font-size: 18px;
	height:40px;
	line-height:40px;
	display: block;
	border-bottom: 1px solid #e4dbca;
	font-weight: normal;
	color: #333;
	_line-height: 0;
	background-color: #fff;
}

#menu li ol li a {
	white-space: normal;
	padding: 0px 5px;
	width: 100%;
	
	height: 100%;
	/* overflow: hidden; */
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: normal;
	display: block;
	white-space: nowrap;
	color: #333;
	float: none;
	
}

#menu li ol li:hover,
#menu li ol li:hover a {
	background-color: #014eae;
	color: #fff;
}

.menu-btn {
	display: none;
	overflow: hidden;
	float: right;
	/* margin-left: 35px; */
	width: 50px;
	height: 50px;
	background: 0 0;
	text-indent: 0;
	opacity: 1;
	position: absolute;
	top:45px;
	right: 10px;
	z-index: 999;
}

.menu-btn2 {
	position: absolute;
	top: 20px;
	display: none;
	right: 10px;
	z-index: 999;
	width: 30px;
	height: 30px;
}

.menu-btn .line-1,
.menu-btn .line-2,
.menu-btn .line-3,
.menu-btn2 .line-1,
.menu-btn2 .line-2,
.menu-btn2 .line-3 {
	position: absolute;
	top: 50%;
	display: block;
	right: 0;
	width: 46px;
	height: 2px;
	background: #014eae;
	transition: all .4s cubic-bezier(.165, .84, .44, 1) 0s;
	transition-property: transform, width, margin, background-color
}

.menu-btn2 .line-1,
.menu-btn2 .line-2,
.menu-btn2 .line-3 {
	background-color: #fff;
}

.menu-btn .line-1,
.menu-btn2 .line-1 {
	margin-top: -15px;
	width: 46px;
}

.menu-btn .line-3,
.menu-btn2 .line-3 {
	margin-top: 15px;
	width: 46px;
}

.drawerMenu-open .menu-btn .line-1,
.menu-btn2.open .line-1 {
	visibility: hidden
}

.drawerMenu-open .menu-btn .line-2,
.menu-btn2.open .line-2 {
	margin-top: 0 !important;
	width: 48px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.drawerMenu-open .menu-btn .line-3,
.menu-btn2.open .line-3 {
	margin-top: 0 !important;
	width: 48px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.mobNav {
	position: fixed;
	top: 130px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	z-index: 200;
	padding: 20px 6% 20px;
	display: none
}

.mobNav ul {
	float:left;;
	width: 100%;
	max-height:70vh;
	overflow: auto
}

.mobNav ul::-webkit-scrollbar {
	display: none
}

.mobNav ul li {
	float: left;
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid #ddd
}

.mobNav ul li .navp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	float: left;
	width: 100%;
}

.mobNav ul li .navp a {
	font-size: 16px;
	color: #014eae;
	font-weight: 700;
	background-size: auto 100%
}

.mobNav ul li .navp i {
	display: block;
	font-style: normal;
	width: 16px;
	font-size: 30px;
	/* font-weight: lighter; */
	transition: .3s;
	color: #014eae;
	transform-origin: center;
	margin-right: 5px;
	height: 16px;
	background-size: 16px 16px
}

.mobNav ul li.on .navp i {
	transform: rotate(-45deg);
	margin-right: 15px;
}

.mobNav ul li .subNavm {
	margin-top: 10px;
	padding-left: 10px;
	display: none
}

.mobNav ul li .subNavm a {
	display: block;
	line-height: 36px;
	font-size: 16px
}

.bg_body {
	background: url(../img/bg_body.png) no-repeat center top;
}

.bg_banner {
	
	margin-top: 30px;
	float: left;
}

.bg_index1 {
	background-image:url(../img/bg_index1.png) ;
	background-repeat: no-repeat;
	background-position: center bottom;
	 padding:30px 0 70px 0;
	float: left;
}

.bg_index2 {
	background-image:url(../img/bg_index2.png) ;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center top;
	margin-top:0px;
	float: left;
	padding-top:40px;
}
.bg_index3 {
	background-image:url(../img/bg_index3.png) ;
	background-repeat: no-repeat;
	background-position: center bottom;
	
	margin-top:0px;
	float: left;
	padding-top:40px; padding-bottom:70px;
}
.bg_index4 {
	background-image:url(../img/bg_index4.png);
	background-repeat: no-repeat;
	background-position: center top;
	margin-top:0px;
	float: left;
	padding-top: 70px;
	padding-bottom: 80px;
}
.bg_index5 {
	background-image:url(../img/bg_index5.png);
	background-repeat: no-repeat;
	background-position: center top;
	margin-top:0px;
	float: left;
	padding-top: 126px;
	padding-bottom: 160px;
	margin-bottom: -225px;
}

.sj{display:none;}


.lmbanner {
	float: left;
	margin-top: 0px;
	width: 100%;
	position: relative;
	height: auto;
	z-index: 9;
}

.banner { position:relative;
	float: left;
	width: 100%;
	margin-top: 0;
}

.banner img,
.lmbanner img {
	width: 100%;
}

.circle__box {
    width: 32px;
    height: 32px;
    position: relative;
    opacity: 0;
    display: none;
}

.circle__wrapper {
    width: 16px;
    height: 32px;
    position: absolute;
    top: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.circle__wrapper--right {
    right: 0;
}

.circle__wrapper--left {
    left: 0;
}

.circle__whole {
    width: 32px;
    height: 32px;
    border: 2px solid hsl(0deg 0% 100% / 20%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
}

.circle__right {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 1px;
    animation: circleRight 5000ms linear forwards;
}

.circle__left {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 1px;
    animation: circleLeft 5000ms linear forwards;
}

.banner .swiper-slide-active,.banner .swiper-pagination-bullet-active{
    svg {
        opacity: 1;
    }

    .circle {
        -webkit-animation: stroke var(--circle-speed,1s) linear forwards;
        animation: stroke var(--circle-speed,1s) linear forwards;
    }

    .sc-content {
        opacity: 1;
    }

    .counter {
        opacity: 1;
    }

    .circle__box {
        opacity: 1;
        display: block;
    }
}


.banSwiper {
	position: relative;
	float: left;
	width: 100%;
	
	overflow: hidden;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
	color: transparent;
}

.banner .pgba {
	z-index: 5;
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	bottom: 0px !important;
	height:128px;
	padding-top: 58px;
	background:url(../img/bg_banbt.png) no-repeat center bottom;
}


.banner .swiper-pagination-bullet{
	position:relative;
	width: 32px;
	height: 32px;
	background: hsl(0deg 0% 100% / 0%);
	margin: 0px 0px !important;
	opacity:1 !important;
	color: #fff;
	}
.banner .swiper-pagination-bullet span{
    position: absolute;
    left: 0;
    right: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    text-align: center;
    font-style: normal;
}



.banner .swiper-pagination-bullet-active{
	width: 32px;
	height: 32px;
	margin: 0px 10px !important; 
}

.banner .pgba span.active i {
	opacity: 1;
	transition: .3s;
}
@keyframes circleRight {
    0% {
        transform: rotate(-135deg);
    }

    50%,100% {
        transform: rotate(45deg);
    }
}

@keyframes circleLeft {
    0%,50% {
        transform: rotate(-135deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

.ban_l,
.ban_r {
	position: absolute !important;
	bottom: 5px !important;
	top: auto !important;
}

.ban_l {
	left: 40% !important;
	
}

.ban_r {
	right: 40% !important;
	
}

@keyframes cilcle {
	0% {
		transform: rotateZ(0);
	}

	100% {
		transform: rotateZ(360deg);
	}
}
.swiper-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide {
	/* min-width: 100vw */
}

.banner .swiper-slide .a {
	display: block;
	height: 100%;
	max-height: 650px;
}

.banner .swiper-slide .a {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
}

.banner .swiper-slide .bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.banner .swiper-slide .bg:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 20%;
	background-size: 100% 100%;
	z-index: 1;
	bottom: 0
}

.banner .swiper-slide .bg {
	-webkit-transform: scale(1.0);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	transition: 5s;
	background-size: cover !important;
	width: 100%;
}

.banner .swiper-slide-active .bg {
	-webkit-transform: scale(1);
}

.main {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;display:flex;  justify-content: space-between;
}



.lm {
	position:relative;
	float: left;
	width: 100%;
	height: 60px;
}
.lm .tit{float: left;}
.lm .tit h6 {
	line-height: 60px;
	font-weight: bold;
	color: #014eae;
	font-size: 30px;
	float: left;
}
.lm .tit span {
	line-height: 36px;
	height: 36px;
	color: #333;
	position: relative;
	float: left;color: #014eae;opacity:0.8;
	font-size:20px;
	margin-top: 15px;
	margin-left: 20px;
	text-transform: capitalize;
	padding: 0 10px;
}
.lm .tit span::after,.lm .tit span:before{display:block;content:'';width: 50px;height:2px;position:absolute;bottom: 2px;left:0;background-color: #014eae;opacity: .4;}
.lm .tit span::before{right: 0;left: auto;bottom: auto;top: 2px;}
.more{float:right;background:url(../img/bg_more.png) no-repeat right center;font-size: 18px;padding-right: 40px;line-height: 60px;}


.footer {
	position: relative;
	background-image:url(../img/bg_footer.png);
	background-position: center top;
	background-size: 100%;
	padding-top: 300px;
	float: left;
	z-index: 8;
}

.foot {
	width: 100%;
	color: #fff;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0;
	padding-bottom: 35px;
}

.foot h6 {
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
}

.yqlj,
.lxwm {
	width:30%;
}

.yqlj ul {}

.yqlj ul li {
	width: 49%;
	line-height: 35px;
}

.yqlj ul li a {
	color: #fff;
	font-size: 16px;
}

.lxwm p {
	width: 100%;
	line-height: 35px;
	font-size: 16px;
}

.copy {
	border-top: 1px solid #fff;
	padding:15px 0;
	margin: 0 auto;
	text-align: center;
	max-width: 1500px;
}

.copy p {
	line-height: 25px;
	color: #fff;
	font-size: 16px;
}

.code{
    text-align: center;
}
.code ul{} 
.code ul li{
    width: 130px;
    padding: 5px;
    border: 1px solid #fff;
}
.code ul li img{
    width: 100%;
}



.bg_main {float:left;
	margin-bottom: -150px;
}
.bg_main .main{flex-wrap: wrap;
    align-items: flex-start;}
.m_l {
	position: relative;
	z-index: 21;
	float: left;
	margin-top: 50px;
	width: 320px;
	padding-bottom: 250px;
	background-image: url(../img/bg_ml.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #f0f7ff;
}

.m_l {}

.yjlm {
	float: left;
	width: 100%;
	display: flex;
	align-items: center;
	height: 100px;
	background: url(../img/bg_yjlm.png) no-repeat center center;
	border-radius: 0;
	padding: 0 30px;
}

.yjlm h6 {
	float: left;
	width: 100%;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	color: #fff;
	font-family: 'SourceHanSerifSC-Bold';
	align-items: center;
}

.yjlm p {
	float: left;
	width: 100%;
	line-height: 40px;
	text-align: left;
	font-size: 20px;
	color: #fff;
	opacity: 0.5;
}

.ejdh {
	float: left;
	width: 100%;
	padding: 20px 30px;
}

.ejdh ul {
	float: left;
	width: 100%;
}

.ejdh ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #bcd1ea;
	line-height: 62px;
	/* height: 65px; */
}

.ejdh ul li:first-child {
	border-top: 0;
}

.ejdh ul li.on .navp,.ejdh ul li:hover .navp{
	width: 100%;
	background-color: #014eae;
}

.ejdh ul li .navp {
	padding: 0;
	float: left;
	width: 100%;
	text-align: center;
}

.ejdh ul li:hover .navp em,
.ejdh ul li.on .navp em {
	
}

.ejdh ul li:hover .navp a,
.ejdh ul li.on .navp a {
	color: #fff;
	font-weight: bold;
	border-bottom: 0;
}

.ejdh ul li.on dl {
    display: block;
}

.ejdh ul li .navp a {
	color: #000;
	display: inline-block;
	font-size: 22px;
	border-bottom: 2px solid #a5c2e7;
	padding: 0 10px;
	line-height: 63px;
}

.ejdh ul li .navp em {
	float: right;
	width: 30px;
	cursor: pointer;
	height: 60px;
	display: none;
}

.ejdh ul dl {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	padding: 0 0px 0 0px;
	margin: 0;
	border-top: 1px solid #F0F2F4;
}

/* .ejdh ul dl:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: calc(100% - 15px);
	background-color: #e2e7ec;
} */

.ejdh ul dl dd {
	float: left;
	position: relative;
	width: 100%;
	padding: 0px;
	text-indent: 0px;
	line-height: 40px;
	text-align: center;
	padding-left: 0;
}

/* .ejdh ul dl dd:before {
	content: "";display
	position: absolute;
	left: 0;
	top: 15px;
	width: 15px;
	height: 1px;
	background-color: #e2e7ec;
} */

.ejdh ul dl dd a {
	color: #000 !important;
	font-size: 16px;
	font-weight: normal !important;
	padding: 0 !important;
}

.ejdh ul dl dd:hover a,
.ejdh ul dl dd.cur a {
	color: #014eae !important;
font-family: 'SOURCEHANSERIFCN-HEAVY';
}

.m_r {
	position: relative;
	z-index: 21;
	margin-bottom: 60px;
	min-height: 500px;
	float: right;
	margin-top: 50px;
	width: calc(100% - 380px);
	max-width: 1240px;
	padding: 0px 0px;
	padding-bottom: 40px;
}

.main1 {
	position: relative;
	margin-bottom: 60px;
	min-height: 500px;
	background-color: #fff;
	float: right;
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
	padding: 0px 20px;
}

.dqlm {
	position: relative;
	float: left;
	width: 100%;
	height: 80px;
	padding-bottom: 0;
	border-bottom: 1px solid #014eae;
}

.dqlm h6 {
	float: left;
	line-height: 78px;
	font-size: 28px;
	text-align: left;
	color: #014eae;
	text-indent: 0;
	border-bottom: 3px solid #014eae;
}

.dqwz {
	float: right;
	padding-left: 30px;
	
	font-size: 14px;
	color: #777;
	line-height: 80px;
	background: url(../img/bg_dqwz.png) no-repeat left center;
}

.dqwz a,
.dqwz span {
	font-size: 14px;
	color: #777;
	
}