/*** reset start ***/
*,
::before,
::after {
    box-sizing: border-box;
    border-color: currentColor;
    border-style: solid;
    border-width: 0;
}

/* body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
} */

#app {
    width: 100%;
    height: 100%;
}

html {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    tab-size: 4;
    text-size-adjust: 100%;
}

html::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr:where([title]) {
    text-decoration: underline dotted;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-collapse: collapse;
    border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
}

button,
select {
    text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    outline-offset: -2px;
}

::-webkit-file-upload-button {
    font: inherit;
}

summary {
    display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

fieldset {
    padding: 0;
    margin: 0;
}

legend {
    padding: 0;
}

ol,
ul,
menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

button,
[role='button'] {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
}

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}

.dark {
    color-scheme: dark;
}

label {
    font-weight: 700;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a:focus,
a:active {
    outline: none;
}

a,
a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

div:focus {
    outline: none;
}

.clearfix {
    &::after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }
}
/*** reset end ***/

/*** common start ***/
.over-hidden {
    overflow: hidden !important;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.container {
    /* width: 1440px; */
    width: 1380px;
    margin: 0 auto;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-1 {
    /* display: block; */
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-v-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-v-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-h-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-h-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-no-shrink {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.one-line-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.two-line-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.six-line-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shadow {
    -webkit-box-shadow: -1px 0px 20px rgba(83, 88, 93, 0.15) !important;
    box-shadow: -1px 0px 20px rgba(83, 88, 93, 0.15) !important;
}
/*** common end ***/

body {
    overflow-x: hidden;
}

.header {
    background-color: #277077;
}

.header .logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.pc-header {
    padding: 35px 30px 28px 17px;
    /* width: 1220px; */
}

.pc-header .logo {
    width: 400px;
    height: 84px;
}

.pc-header .logo a {
    display: block;
    height: 100%;
}

.pc-header .nav {
    width: 576px;
    padding-top: 16px;
    margin-left: 86px;
}

.pc-header .nav-li {
    position: relative;
    float: left;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 20%;
    text-align: center;
    line-height: 1;
}

.pc-header .sub-nav {
    width: 180px;
    background: #fff;
    white-space: normal;
    position: absolute;
    right: calc(50% - 90px);
    top: 100%;
    display: none;
    padding: 5px 0;
    z-index: 100;
}

.pc-header .nav-li:hover .sub-nav {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    animation-duration: .6s;
    -webkit-animation-duration: .6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

.pc-header .sub-nav a {
    color: #121212;
    padding: 12px 10px;
    display: block;
    line-height: 24px;
    font-size: 17px;
}

.pc-header .sub-nav a:hover {
    color: #277077;
    background: rgba(0, 0, 0, .1);
}

.pc-header .a-link {
    font-size: 18px;
    color: #fff;
    transition: color 0.2s ease;
}

.pc-header .a-link:hover {
    color: #f1ec90;
    text-decoration: underline;
}

.pc-header .nav-li.current {
    position: relative;
}

.pc-header .nav-li.current::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f1ec90;
}

.pc-header .tool-bar {
    padding-top: 16px;
}

.pc-header .tool-bar .tool-bar-item {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1;
}

.pc-header .tool-bar .tool-bar-item.search {
    position: relative;
}

.pc-header .search .a-link {
    cursor: pointer;
}

.pc-header .search .a-link:hover {
    text-decoration: none;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    border-radius: 0.25rem;
    background-color: #fff;
    padding: 0.5rem;
}

.offcanvas .dropdown-menu {
    display: none;
}

.offcanvas.show .dropdown-menu {
    display: block;
}

.dropdown-menu {
    top: 120%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 300px;
    left: auto;
    right: 0;
    position: absolute;
    z-index: 1000;
}

.dropdown-menu.show {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.m-search-input {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #29292e;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #277077;
    border-radius: 0.25rem 0 0 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    border: 1px solid #277077;
    width: 1%;
}

.m-search-input:focus {
    outline: 0;
}

.m-search-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #277077;
    border-radius: 0 0.25rem 0.25rem 0;
    background-color: #277077;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.m-search-btn:active {
    background-color: #eaeaea;
}

.pc-header .tool-bar-item .iconfont {
    font-size: 18px;
    margin-right: 6px;
}

.wp-header {
    display: none;
    padding-top: 20px;
    padding-bottom: 15px;
}

.wp-header .nav-item .nav-link {
    display: block;
    width: 100%;
}

/*手机端导航按钮*/
.menu-button {
    display: none;
    top: 38px;
    z-index: 1000;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.menu-button .bar:nth-of-type(1) {
    margin-top: 0px;
}

.menu-button .bar:nth-of-type(3) {
    margin-bottom: 0px;
}

.wp-header .logo {
    width: 190px;
}

.bar {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: #fff;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.wp-header .dropdown-menu {
    position: relative;
    visibility: visible;
    opacity: 1;
    top: 0;
    width: 100%;
    transition: none;
}

.wp-header .nav-item {
    position: relative;
}

.wp-header .nav-item .nav-link {
    display: block;
    border-bottom: 1px solid #eaeaea;
    padding: 13px 60px 12px 30px;
    line-height: 40px;
    font-size: 18px;
}

.wp-header .nav-item .arrow {
    position: absolute;
    right: 0;
    top: 12px;
    width: 45px;
    height: 45px;
    background: url('../images/arrow_right.svg') no-repeat right center;
    background-size: 20px 20px;
}

.wp-header .nav-item .sub-nav {
    height: 0;
    padding: 0 22px 0 8px;
    background: #f3f3f3;
    overflow: hidden;
    -webkit-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out;
}

.wp-header .nav-item.on .sub-nav {
    display: block;
}

.wp-header .nav-item .sub-nav dd a {
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    padding-left: 30px;
    position: relative;
}

.wp-header .nav-item .sub-nav dd:not(:first-child) a {
    border-top: 1px solid rgba(135, 135, 135, .1);
}

.footer {
    background: #277077 url('../images/university-icon.png') no-repeat right bottom;
    background-size: 336px 336px;
    padding-top: 64px;
    padding-bottom: 84px;
    line-height: 1;
}

.footer-main {
    color: #fff;
}

.friend-link-title {
    font-size: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 14px;
}

.friend-link-list {
    padding-top: 18px;
    font-size: 16px;
}

.friend-link-item {
    display: inline-block;
    line-height: 1.6;
}

.friend-link-item:not(:last-child) {
    margin-right: 20px;
}

.footer-logo {
    padding: 36px 0 14px;
    border-bottom: 1px solid #fff;
}

.footer-logo-icon {
    display: block;
    width: 315px;
    height: 66px;
}

.footer-info {
    line-height: 1.6;
    font-size: 16px;
    padding-top: 12px;
}

.footer-qrcode {
    margin-left: 140px;
}

.footer-qrcode-item {
    padding: 10px 10px 0;
    background-color: #61b3bc;
} 

.footer-qrcode-item:first-child {
    margin-right: 20px;
}

.footer-qrcode-item .qrcode-icon {
    display: block;
    width: 110px;
    height: 110px;
}

.footer-qrcode-item .qrcode-label {
    padding-top: 10px;
    padding-bottom: 12px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

#gotop {
    position: fixed;
    z-index: 90;
    bottom: 32px;
    right: 10px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: #277077;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

#gotop:hover {
    border-radius: 50%;
}

#gotop.hide {
    height: 0;
    opacity: 0;
    visibility: hidden;
}

#gotop svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    fill: #fff;
    vertical-align: middle;
    margin: -3px 0 0;
    transition: 0.6s;
}

@media (max-width: 1400px) and (min-width: 1180px) {
    .pc-header {
        padding-top: 42px;
        padding-bottom: 36px;
    }

    .pc-header .logo {
        width: 386px;
        height: 86px;
    }

    .pc-header .nav,
    .pc-header .tool-bar {
        padding-top: 0;
    }

    .pc-header .nav {
        margin-left: 60px;
    }
}

@media (max-width: 1180px) {
    .pc-header {
        display: none;
    }

    .wp-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .menu-button {
        display: block;
        margin-right: 32px;
    }

    .logo {
        width: 52%;
        padding-left: 10px;
    }

    .logo img {
        width: 100%;
    }

    .menu-button {
        display: block;
        margin-right: 20px;
    }

    .footer {
        padding: 40px 20px 60px;
    }

    .footer-main {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }

    .friend-link-title {
        font-size: 20px;
    }

    .friend-link-list {
        font-size: 14px;
    }

    .footer-logo {
        padding: 40px 0 20px 14px;
    }

    .footer-info {
        font-size: 14px;
        line-height: 2;
    }

    .footer-qrcode {
        margin: 20px auto 0;
    }

    .footer-qrcode-item .qrcode-icon {
        height: auto;
    }

    .footer-qrcode .qrcode-label {
        font-size: 16px;
        padding-top: 10px;
        padding-bottom: 12px;
    }
}

.hidden {
    display: none !important;
}

/* offcanvas */
.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    color: #595d69;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        -webkit-transition: none;
        transition: none;
    }
}

.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, 0.17);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    border-right: 1px solid rgba(0, 0, 0, 0.17);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.17);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}
.offcanvas.showing,
.offcanvas.show:not(.hiding) {
    -webkit-transform: none;
    transform: none;
}
.offcanvas.showing,
.offcanvas.hiding,
.offcanvas.show {
    visibility: visible;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.offcanvas-backdrop.fade {
    opacity: 0;
}
.offcanvas-backdrop.show {
    opacity: 0.5;
}

.offcanvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 1.875rem;
}
.offcanvas-header .btn-close {
    cursor: pointer;
    padding: calc(1rem * 0.5) calc(1.875rem * 0.5);
    margin: calc(-0.5 * 1rem) calc(-0.5 * 1.875rem) calc(-0.5 * 1rem) auto;
}

.btn-close {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
        center / 1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.offcanvas-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1rem 1.875rem;
    overflow-y: auto;
}
/* offcanvas */

.m-inner-root {
    background: #f5f5f5;
}

.m-transparent-breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: -158px;
    box-sizing: border-box;
    height: 158px;
    background-color: rgba(46, 46, 46, 0.4);
}

.m-breadcrumb-list {
    padding-left: 30px;
    line-height: 1;
    padding-top: 20px;
    padding-bottom: 23px;
    background: url('../images/home-icon.png') no-repeat left center;
    background-size: 20px 20px;
    color: #fff;
    font-size: 20px;
}

.m-breadcrumb-item:not(:last-child)::after {
    content: '-';
    font-size: 20px;
    color: #fff;
}

.m-breadcrumb-item a:hover {
    color: #f1ec90;
    text-decoration: underline;
}

.m-inner-body {
    position: relative;
    margin-top: -93px;
    z-index: 3;
    padding-bottom: 50px;
}

.m-inner-nav-header {
    position: relative;
    width: 260px;
    height: 93px;
    background-color: #277077;
}

.m-inner-nav-header::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 16px;
    font-family: DIN Alternate;
    font-weight: bold;
    font-size: 26px;
    color: rgba(248, 248, 248, 0.33);
    line-height: 34px;
}

.m-inner-nav-header.law::before {
    content: 'LAW';
}

.m-inner-nav-header.news::before {
    content: 'NEWS';
}

.m-inner-nav-header.teachers::before {
    content: 'TEACHERS';
}

.m-inner-nav-title {
    font-size: 36px;
    font-weight: bold;
    color: #f8f8f8;
    text-align: center;
    line-height: 41px;
}

.m-inner-nav-bg {
    position: relative;
}

.m-inner-nav-bg::before,
.m-inner-nav-bg::after {
    content: '';
    position: absolute;
    top: 2px;
    width: 0;
    height: 0;

    border: 10px solid #f5f5f5;
    transform: rotate(45deg);
}

.m-inner-nav-bg::before {
    left: -10px;
}

.m-inner-nav-bg::after {
    right: -10px;
}

.m-inner-nav-bg .top-bg-bar {
    background-color: #246369;
    height: 12px;
}

.m-inner-nav-bg .btm-bg-bar {
    background-color: #fff;
    height: 11px;
}

.m-inner-nav-list {
    padding: 10px 40px 20px;
    background-color: #fff;
}

.m-inner-nav-item {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 21px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.m-inner-nav-item:not(:last-child) {
    border-bottom: 1px solid #dcdcdc;
}

.m-inner-nav-item.current {
    color: #277077;
    padding-left: 25px;
}

.m-inner-nav-item.current::before {
    content: '';
    color: #277077;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #277077;
}

.m-inner-main {
    margin-left: 34px;
    padding: 38px 70px 70px;
    background-color: #fff;
    min-height: 1500px;
}

.m-inner-main-header {
    padding-bottom: 30px;
}

.m-inner-main-title {
    font-weight: bold;
    font-size: 26px;
    color: #1a1a1a;
    line-height: 29px;
}

.m-bg-wrapper {
    position: relative;
}

.logo-icon-bg::before {
    content: '';
    position: absolute;
    top: 93px;
    left: 0;
    width: 474px;
    height: 606px;
    background: url('../images/logo-icon-bg.png') no-repeat center;
    background-size: cover;
}

.building-icon-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 840px;
    height: 916px;
    background: url('../images/building-icon-bg.png') no-repeat center;
    background-size: cover;
}

@media (max-width: 1400px) {
    .container {
        width: 100%;
    }

    /* breadcrumb */
    .m-transparent-breadcrumb {
        background-color: transparent;
        height: auto;
        margin-top: 0;
    }

    .m-breadcrumb-container {
        display: block !important;
    }

    .m-breadcrumb-list,
    .m-breadcrumb-item:not(:last-child)::after {
        color: #1a1a1a;
    }

    .m-breadcrumb-list {
        background-image: url('../images/home-black-icon.png');
        font-size: 16px;
    }
    /* breadcrumb */

    .m-inner-body {
        display: block !important;
        margin-top: 0;
        padding-bottom: 20px;
    }

    .m-breadcrumb-list {
        padding-bottom: 20px;
    }

    /* 左侧导航 */
    .m-inner-nav {
        position: relative;
    }

    .m-inner-nav-header {
        text-align: left;
        width: 100%;
        height: 46px;
        display: block !important;
        background-image: url('../images/more-down.png');
        background-repeat: no-repeat;
        background-position: 94% center;
        background-size: 16px 16px;
    }

    .m-inner-nav-title {
        font-size: 16px;
        text-align: left;
        line-height: 46px;
        padding-left: 20px;
    }

    .logo-icon-bg::before {
        top: 0;
        width: 60%;
        height: 120px;
    }

    .m-inner-nav-header.law::before {
        /* content: '' !important; */
        font-size: 16px;
    }

    .building-icon-bg::after {
        width: 40%;
        height: 220px;
    }

    .m-inner-nav-bg {
        display: none;
    }

    .m-inner-nav-list {
        display: none;
        padding: 6px 20px 12px;
    }

    .m-inner-nav-item {
        font-size: 14px;
    }
    /* 左侧导航 */

    /* 右侧正文内容 */
    .m-inner-main {
        margin-top: 20px;
        margin-left: 0;
        padding: 20px;
    }

    .m-inner-main-title {
        font-size: 18px;
    }

    .m-inner-main-header {
        padding-bottom: 0;
    }
    /* 右侧正文内容 */
}

/* 分页 */
.m-pagination {
	width:100%;
	height:68px;
	margin-top:15px;
	line-height:68px;
	display:table;
	font-family:"微软雅黑";
	font-size:12px;
	color:#494949;
	text-align:center;
	clear:both;
}
.m-pagination span{
	font-size:13px;
	font-weight:bold;
}
.m-pagination .txt{
	width:35px;
	height:25px;
	line-height:25px;
	border:1px solid #a9a9a9;
	text-align:center;
	margin:0px 3px;
}
.m-pagination .btn{
	width:54px;
	height:30px;
	line-height:30px;
	background-color:#f1eff0;
	color:#999999;
}
.m-pagination a{
	color:#999999;
	padding:8px 12px;
	background-color:#f1eff0;
	margin:0px 5px;
}
.m-pagination a:hover{
	color:#F00;
}
/* 分页 */

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }    
}