@charset "utf-8";
/* CSS Document */
/*global*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif';
}
html {
    font-size: 10px;
}
body {
    overflow-x: hidden;
    font-size: 2rem;
    background: #f6f6f6;
}
img, button {
    border: 0;
}
p, h1, h2, h3, h4, h5, h6, ul, ol {
    margin: 0;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
textarea {
    resize: none;
    overflow: hidden;
}
.f-l, .y-l, .s-l {
    float: left;
}
.f-r, .y-r, .s-r {
    float: right;
}
/*box*/
.m-wrap {
    width: 100%;
}
.m-box {
    width: 73.5%;
    margin-left: auto;
    margin-right: auto;
	height:fit-content;
}
/*public*/
.s-wap {
    display: none;
}
/*animation*/
@keyframes bounceIn {
	0%, 100%, 20%, 40%, 60%, 80% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		opacity: 0.3;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		opacity: 0.6;
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 0.9;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		opacity: 1;
		transform: scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}
@keyframes bounceOut {
	0%, 100%, 20%, 40%, 60%, 80% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
	20% {
		opacity: 1;
		transform: scale3d(0.97, 0.97, 0.97);
	}
	40% {
		opacity: 0.9;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	60% {
		opacity: 0.6;
		transform: scale3d(0.9, 0.9, 0.9);
	}
	80% {
		opacity: 0.3;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		opacity: 1;
		transform: translate3d(0, 10px, 0);
	}
	90% {
		opacity: 1;
		transform: translate3d(0, -5px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInLeft {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		opacity: 1;
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		opacity: 1;
		transform: translate3d(5px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
		opacity: 1;
	}
	90% {
		transform: translate3d(0, -5px, 0);
		opacity: 1;
	}
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
@keyframes bounceInRight {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		opacity: 1;
		transform: translate3d(10px, 0, 0);
	}
	90% {
		opacity: 1;
		transform: translate3d(-5px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes rotateScaleIn {
	0% {
		opacity: 0;
		transform: scale(0) rotate(-360deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	100% {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
@keyframes bounceInDown {
	0%, 100%, 60%, 75%, 90% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		opacity: 1;
		transform: translate3d(0, -10px, 0);
	}
	90% {
		opacity: 1;
		transform: translate3d(0, 5px, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity: 1;
	}
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes topLoop {
	0% {
		transform: translateY(100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes leftLoop {
	0% {
		transform: translateX(-200px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes rightLoop {
	0% {
		transform: translateX(200px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes bottomLoop {
	0% {
		transform: translateY(-200px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes enLarge {
	0% {
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes rotateYIn {
	from {
		transform: rotateY(90deg);
		opacity: 0;
	}
	to {
		transform: rotateY(0);
		opacity: 1;
	}
}
@keyframes slideDown {
	from {
		height: 0;
	}
	to {
		height: 100%;
	}
}
.bounceIn {
	animation: bounceIn 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceOut {
	animation: bounceOut 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInUp {
	animation: bounceInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInLeft {
	animation: bounceInLeft 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInRight {
	animation: bounceInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInDown {
	animation: bounceInDown 0.8s ease;
	animation-fill-mode: forwards;
}
.fadeInDown {
	animation: fadeInDown 0.8s ease;
	animation-fill-mode: forwards;
}
.fadeInUp {
	animation: fadeInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.rotateScaleIn {
	animation: rotateScaleIn 1.2s ease;
	animation-fill-mode: forwards;
}
.fadeIn {
	animation: fadeIn 1.6s ease;
	animation-fill-mode: forwards;
}
.rotateIn {
	animation: rotateIn 0.8s ease;
	animation-fill-mode: forwards;
}
.rollIn {
	animation: rollIn 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomIn {
	animation: zoomIn 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInUp {
	animation: zoomInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInd {
	animation: zoomIn 0.2s cubic-bezier(0.18, 0.74, 1, 1);
	animation-fill-mode: forwards;
}
.zoomOutd {
	animation: zoomOut 0.2s cubic-bezier(0.18, 0.74, 1, 1);
	animation-fill-mode: forwards;
}
.slideInRight {
	animation: slideInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInLeft {
	animation: zoomInLeft 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInRight {
	animation: zoomInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.topLoop {
	animation: topLoop 1s ease;
	animation-fill-mode: forwards;
}
.leftLoop {
	animation: leftLoop 1s ease;
	animation-fill-mode: forwards;
}
.rightLoop {
	animation: rightLoop 1s ease;
	animation-fill-mode: forwards;
}
.bottomLoop {
	animation: bottomLoop 1s ease;
	animation-fill-mode: forwards;
}
.enLarge {
	animation: enLarge 1s ease;
	animation-fill-mode: forwards;
}
.rotateYIn {
	animation: rotateYIn 1.6s ease;
	animation-fill-mode: forwards;
}
.slideDown {
	animation: slideDown 1.6s ease;
	animation-fill-mode: forwards;
}
@keyframes topin {
    from {
        transform: translateY(-9.5em);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/*header*/
.g-header {
    height: auto;
    box-sizing: border-box;
    padding: 1.0em 0;
    text-align: center;
    background: #f6f6f6;
}
.fix-header.on {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    transform: translateY(-9.5em);
    animation: topin 0.5s ease-out 0.2s 1 normal;
    animation-fill-mode: forwards;
}
.g-header .m-box {
    position: relative;
}
.g-header .s-logo {
    display: inline-block;
    width: auto;
    height: 100%;
    overflow: hidden;
}
.g-header .s-logo img {
    width: auto;
    height: 3em;
}
.g-header .f-l, .g-header .f-r {
    position: absolute;
    z-index: 1;
    top: 0;
    width: auto;
    height: 100%;
}
.g-header .f-l {
    left: 0;
}
.g-header .f-l p {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 2rem;
    font-weight: bold;
    color: #29316c;
    line-height: 1.65;
    text-align: left;
}
.g-header .f-l p a {
    color: inherit;
}
.g-header .f-l p span {
    color: #be0304;
}
.g-header .f-l .s-menu {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    background: #29316c;
    box-sizing: border-box;
    padding: 0 1.25em;
    border-radius: 3px;
    font-size: 1.2rem;
    line-height: 2.5;
    color: #fff;
}
.g-header .f-l .s-menu:after {
    content: '菜单';
}
.g-header.on .f-l .s-menu:after {
    content: '关闭';
}
.g-header .f-r {
    right: 0;
}
.g-header .f-r .s-contact, .g-header .f-r .s-aside {
    width: auto;
    height: auto;
}
.g-header .f-r .s-contact {
    overflow: hidden;
}
.g-header .f-r .s-contact img, .g-header .f-r .s-contact span {
    vertical-align: bottom;
}
.g-header .f-r .s-contact img {
    margin-right: 0.5em;
}
.g-header .f-r .s-contact span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #29316c;
}
.g-header .f-r .s-contact span big {
    font-size: 2.8rem;
}
.g-header .f-r .s-aside .s-language, .g-header .f-r .s-aside .s-credit {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
}
.g-header .f-r .s-aside .s-language {
    position: relative;
}
.g-header .f-r .s-aside .s-language:hover p {
    visibility: visible;
    opacity: 1;
}
.g-header .f-r .s-aside .s-language h3, .g-header .f-r .s-aside .s-language p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-header .f-r .s-aside .s-language h3 {
    font-size: 1.4rem;
    color: #29316c;
    cursor: pointer;
}
.g-header .f-r .s-aside .s-language h3 img, .g-header .f-r .s-aside .s-language h3 span {
    vertical-align: middle;
}
.g-header .f-r .s-aside .s-language h3 span {
    margin: 0 0.25em;
    color: inherit;
}
.g-header .f-r .s-aside .s-language p {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    box-sizing: border-box;
    padding: 0.25em 0;
    font-size: 1.2rem;
    line-height: 2;
    color: #999;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.g-header .f-r .s-aside .s-language p a {
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    color: inherit;
    transition: all ease-out 0.3s;
}
.g-header .f-r .s-aside .s-language p a:hover {
    color: #29316c;
}
.g-header .f-r .s-aside .s-credit {
    font-size: 1.4rem;
    font-weight: bold;
    color: #29316c;
}
.g-header .f-r .s-aside .s-credit a {
    color: inherit;
}
.credit-sub {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: space-between;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.credit-sub.on {
    visibility: visible;
    opacity: 1;
}
.credit-sub .s-main {
    width: auto;
    height: auto;
    margin: 0 auto;
    background: #fff;
    box-sizing: border-box;
    padding: 1em;
    border-radius: 10px;
}
.credit-sub .s-main .s-close {
    position: absolute;
    z-index: 1;
    top: 1.5em;
    right: 1.5em;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid #ccc;
    font-size: 2rem;
    line-height: 1.475;
    color: #333;
    text-align: center;
}
.credit-sub .s-main img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.g-header .f-r .s-aside .s-credit span, .g-header .f-r .s-aside .s-credit img {
    vertical-align: middle;
}
.g-header .f-r .s-aside .s-credit img {
    margin-left: 0.25em;
}
.g-header .f-r .s-mobile {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
}
.g-header .f-r .s-mobile img {
    display: block;
    height: 1.375em;
}
/*nav*/
.g-nav {
    height: auto;
    background-color: #f6f6f6;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.fix-nav.on {
    position: fixed;
    z-index: 99;
    top: 5.0em;
    left: 0;
    transform: translateY(-9.5em);
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    animation: topin 0.5s ease-out 0.2s 1 normal;
    animation-fill-mode: forwards;
}
.g-nav .s-first {
    width: 100%;
    height: auto;
}
.g-nav .s-first a {
    color: inherit;
}
.g-nav .s-first.s-pc {
    display: flex;
}
.g-nav .s-first.s-pc .s-col {
    width: 10em;
    height: auto;
    white-space: nowrap;
    box-sizing: border-box;
    border-left: 1px solid #ccc;
    font-size: 1.4rem;
    line-height: 3.5;
    color: #29316c;
    text-align: center;
}
.g-nav .s-first.s-pc .s-col:hover {
    border-left-color: transparent;
}
.g-nav .s-first.s-pc .s-col:hover .s-second {
    display: block;
}
.g-nav .s-first.s-pc .s-col:first-child {
    border-left-color: transparent;
}
.g-nav .s-first.s-pc .s-col:hover, .g-nav .s-first.s-pc .s-col.on {
    background: url("../images/nav-bg.png") 0 0 no-repeat;
    background-size: cover;
    color: #fff;
}
.g-nav .s-first.s-pc .s-col:nth-child(1):hover i {
    background-image: url("../images/menu-active-1.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(1) i {
    background-image: url("../images/menu-1.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(2):hover i {
    background-image: url("../images/menu-active-2.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(2) i {
    background-image: url("../images/menu-2.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(3):hover i {
    background-image: url("../images/menu-active-3.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(3) i {
    background-image: url("../images/menu-3.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(4):hover i {
    background-image: url("../images/menu-active-4.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(4) i {
    background-image: url("../images/menu-4.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(5):hover i {
    background-image: url("../images/menu-active-5.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(5) i {
    background-image: url("../images/menu-5.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(6):hover i {
    background-image: url("../images/menu-active-6.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(6) i {
    background-image: url("../images/menu-6.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(7):hover i {
    background-image: url("../images/menu-active-7.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(7) i {
    background-image: url("../images/menu-7.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(8):hover i {
    background-image: url("../images/menu-active-8.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(8) i {
    background-image: url("../images/menu-8.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(9):hover i {
    background-image: url("../images/menu-active-9.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(9) i {
    background-image: url("../images/menu-9.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(10):hover i {
    background-image: url("../images/menu-active-10.png");
}
.g-nav .s-first.s-pc .s-col:nth-child(10) i {
    background-image: url("../images/menu-10.png");
}
.g-nav .s-first.s-pc .s-col i, .g-nav .s-first.s-pc .s-col span {
    display: inline-block;
    vertical-align: middle;
}
.g-nav .s-first.s-pc .s-col i {
    width: 2em;
    height: 2em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
}
.g-nav .s-first.s-pc .s-col span {
    margin-left: 0.25em;
}
.g-nav .s-first.s-pc .s-col > a {
    font-weight: bold;
}
.g-nav .s-first.s-pc .s-col .s-second {
    position: absolute;
    z-index: 10;
    left: 0;
    width: 100%;
    height: auto;
    background: #14326d url("../images/sub-bg.png") center top no-repeat;
    background-size: auto 3.57142857em;
    display: none;
}
.g-nav .s-first.s-pc .s-col .s-second .m-box {
    box-sizing: border-box;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col {
    width: 10em;
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    float: left;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col:hover .s-third {
    display: block;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col:hover > a {
    background: #29316c;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col > a {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 1.5em;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col span, .g-nav .s-first.s-pc .s-col .s-second .y-col img {
    vertical-align: middle;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-third {
    position: relative;
    width: 100%;
    height: auto;
    display: none;
    box-sizing: border-box;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row {
    position: relative;
    width: 100%;
    height: auto;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row:first-child {
    border-top-color: rgba(255, 255, 255, 0.05);
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row:hover {
    background: #32579e;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row:hover .s-fourth {
    display: block;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.4rem;
    font-weight: normal;
    color: #fff;
    line-height: 2.5;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row .s-fourth {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 100%;
    width: 150%;
    height: auto;
    overflow: hidden;
    background: #32579e;
    display: none;
    transition: all ease-out 0.3s;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row .s-fourth ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row .s-fourth li {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    color: #ccc;
    transition: all ease-out 0.3s;
}
.g-nav .s-first.s-pc .s-col .s-second .y-col .s-row .s-fourth li:hover {
    background: #fff;
    color: #29316c;
}
.g-nav .s-first.s-wap {
    width: 100%;
    height: auto;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 2.75em;
}
.g-nav .s-first.s-wap .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}
.g-nav .s-first.s-wap .s-row.on h3 {
    color: #fff;
    background: url("../images/sub-bg.png") center center no-repeat;
    background-size: cover;
}
.g-nav .s-first.s-wap .s-row.on i {
    background-image: url("../images/reduce.png");
}
.g-nav .s-first.s-wap .s-row h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em;
    font-size: 1.4rem;
    color: #333;
    line-height: 2.85714286em;
}
.g-nav .s-first.s-wap .s-row h3 span, .g-nav .s-first.s-wap .s-row h3 i {
    display: inline-block;
    vertical-align: middle;
}
.g-nav .s-first.s-wap .s-row h3 i {
    width: 1em;
    height: 1em;
    overflow: hidden;
    background: url("../images/add.png") center center no-repeat;
    background-size: contain;
}
.g-nav .s-first.s-wap .s-row .s-sub {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em;
    display: none;
}
.g-nav .s-first.s-wap .s-row .s-sub li {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.2rem;
    color: #666;
    line-height: 3.5;
}
.g-nav .s-first.s-wap .s-row .s-sub li a {
    color: inherit;
}
/*banner*/
.g-banner {
    height: auto;
    overflow: hidden;
}
.g-banner .s-banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}
.g-banner .s-banner.s-wap {
    padding-top: 2.5em;
}
.g-banner .s-banner .prev, .g-banner .s-banner .next {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 2.5em;
    height: 2.5em;
    overflow: hidden;
    margin-top: -1.25em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 50%;
    background-color: rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    border-radius: 50%;
    transition: all ease-out 0.3s;
    opacity: 0.8;
}
.g-banner .s-banner .prev:hover, .g-banner .s-banner .next:hover {
    opacity: 1;
}
.g-banner .s-banner .prev {
    left: 7.5%;
    background-image: url("../images/prev-white.png");
}
.g-banner .s-banner .next {
    right: 7.5%;
    background-image: url("../images/next-white.png");
}
.g-banner .s-banner .bd {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-banner .s-banner .bd li {
    width: 100%;
    height: auto;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.g-banner .s-banner .bd li.on {
    visibility: visible;
    opacity: 1;
}
.g-banner .s-banner .bd li img {
    display: block;
    width: 100%;
}
.g-banner .s-banner .hd {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1em 0;
    text-align: center;
}
.g-banner .s-banner .hd li {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    margin: 0 0.5em;
    background: url("../images/point.png") center center no-repeat;
}
.g-banner .s-banner .hd li.on {
    background-image: url("../images/point-active.png");
}
/*search*/
.g-search {
    height: 4em;
    overflow: hidden;
    background: #eee;
}
.g-search .m-box {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-search .s-hot {
    width: auto;
    height: auto;
    overflow: hidden;
    font-size: 1.5rem;
    color: #333;
}
.g-search .s-hot b, .g-search .s-hot a {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    margin-right: 0.75em;
    color: inherit;
}
.g-search .s-hot b {
    color: #29316c;
}
.g-search .s-search {
   
    width: 15.5em;
    height: 2.2em;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #29316c;
}
.g-search .s-search form{  width: 15.5em; display: flex;  box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    height: 2.2em;}
.g-search .s-search input, .g-search .s-search .cont_btn {
    display: block;
    height: 100%;
    overflow: hidden;
}
.g-search .s-search input {
    width: 12.5em;
    background: none;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    padding: 0 1em;
    font-size: 1.4rem;
    color: #333;
    line-height: 2.85714286em;
}
.g-search .s-search .cont_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    background: #29316c;
}
.g-search .s-search a img {
    height: 1.2em;
}
/*recommend*/
.g-recommend {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 1.5em;
}
.g-recommend .m-t, .g-recommend .m-c {
    height: auto;
    overflow: hidden;
}
.g-recommend .m-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 4.2rem;
    color: #333;
}
.g-recommend .m-c {
    margin-top: 1em;
}
.g-recommend .m-c .s-recommend {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-pc ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-recommend .m-c .s-recommend.s-pc li {
    position: relative;
    width: 33.3333%;
    height: 15em;
    overflow: hidden;
    margin: 0 0.5em;
    transition: all ease-out 0.3s;
}
.g-recommend .m-c .s-recommend.s-pc li:nth-child(1) {
    margin-left: 0;
}
.g-recommend .m-c .s-recommend.s-pc li:nth-child(3) {
    margin-right: 0;
}
.g-recommend .m-c .s-recommend.s-pc li:hover {
    width: 45%;
}
.g-recommend .m-c .s-recommend.s-pc li:hover .s-info .s-desc {
    transform: translateY(0);
}
.g-recommend .m-c .s-recommend.s-pc .s-pic, .g-recommend .m-c .s-recommend.s-pc .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-pc .s-pic {
    height: 100%;
}
.g-recommend .m-c .s-recommend.s-pc .s-pic .s-main {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-pc .s-info {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 2em;
}
.g-recommend .m-c .s-recommend.s-pc .s-info .s-desc {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translateY(9.5em);
    transition: all ease-out 0.3s;
}
.g-recommend .m-c .s-recommend.s-pc .s-info h3, .g-recommend .m-c .s-recommend.s-pc .s-info aside, .g-recommend .m-c .s-recommend.s-pc .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1px;
}
.g-recommend .m-c .s-recommend.s-pc .s-info h3, .g-recommend .m-c .s-recommend.s-pc .s-info aside {
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-recommend .m-c .s-recommend.s-pc .s-info h3 {
    font-size: 2.4rem;
}
.g-recommend .m-c .s-recommend.s-pc .s-info aside {
    margin-top: 0.5em;
    font-size: 1.4rem;
}
.g-recommend .m-c .s-recommend.s-pc .s-info p {
    margin-top: 1em;
    font-size: 1.4rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.g-recommend .m-c .s-recommend.s-pc .s-info a {
    color: inherit;
}
.g-recommend .m-c .s-recommend.s-pc .s-info .s-more {
    display: block;
    width: 2em;
    height: 2em;
    overflow: hidden;
    margin-top: 1em;
    box-sizing: border-box;
    border-radius: 50%;
    background: url("../images/more.png") center center no-repeat;
    background-size: 100% auto;
}
.g-recommend .m-c .s-recommend.s-wap {
    position: relative;
}
.g-recommend .m-c .s-recommend.s-wap .prev, .g-recommend .m-c .s-recommend.s-wap .next {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 1em;
    height: 1.5em;
    overflow: hidden;
    margin-top: -0.75em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 50%;
    background-color: rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    transition: all ease-out 0.3s;
    opacity: 0.8;
}
.g-recommend .m-c .s-recommend.s-wap .prev:hover, .g-recommend .m-c .s-recommend.s-wap .next:hover {
    opacity: 1;
}
.g-recommend .m-c .s-recommend.s-wap .prev {
    left: 0;
    background-image: url("../images/prev-white.png");
}
.g-recommend .m-c .s-recommend.s-wap .next {
    right: 0;
    background-image: url("../images/next-white.png");
}
.g-recommend .m-c .s-recommend.s-wap .bd {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-wap .bd .temp {
    position: relative;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-wap .bd li {
    position: relative;
    width: 100%;
    height: 15em;
    overflow: hidden;
    float: left;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-pic, .g-recommend .m-c .s-recommend.s-wap .bd .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-pic {
    height: 100%;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-pic .s-main {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 2em;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info .s-desc {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info h3, .g-recommend .m-c .s-recommend.s-wap .bd .s-info aside, .g-recommend .m-c .s-recommend.s-wap .bd .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1px;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info h3, .g-recommend .m-c .s-recommend.s-wap .bd .s-info aside {
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info h3 {
    font-size: 2.4rem;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info aside {
    margin-top: 0.5em;
    font-size: 1.4rem;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info p {
    margin-top: 1em;
    font-size: 1.4rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info a {
    color: inherit;
}
.g-recommend .m-c .s-recommend.s-wap .bd .s-info .s-more {
    display: block;
    width: 2em;
    height: 2em;
    overflow: hidden;
    margin-top: 1em;
    box-sizing: border-box;
    border-radius: 50%;
    background: url("../images/more.png") center center no-repeat;
    background-size: 100% auto;
}
.g-recommend .m-c .s-recommend.s-wap .hd {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1em 0;
    text-align: center;
}
.g-recommend .m-c .s-recommend.s-wap .hd li {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    margin: 0 0.5em;
    background: url("../images/point.png") center center no-repeat;
}
.g-recommend .m-c .s-recommend.s-wap .hd li.on {
    background-image: url("../images/point-active.png");
}
/*general*/
.u-title {
    box-sizing: border-box;
    padding: 1.5em 0 1em;
}
.u-title h3, .u-title p {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    letter-spacing: 2px;
}
.u-title h3 {
    font-size: 4.8rem;
    color: #333;
    font-weight: normal;
}
.u-title a {
    color: inherit;
}
/*.u-title h3:after {
    content: '';
    display: inline-block;
    width: 0.35416667em;
    height: 0.35416667em;
    overflow: hidden;
    background: url("../images/circle-blue.png") center center no-repeat;
    background-size: 100% 100%;
    margin-left: 0.25em;
}*/
.u-title p {
    margin: 0.5em 0;
}
.u-title .s-more {
    display: block;
    width: 11.6875em;
    height: auto;
    overflow: hidden;
    margin: 1.5em auto 0;
    box-sizing: border-box;
    border: 1px solid #29316c;
    border-radius: 2em;
    font-size: 1.6rem;
    line-height: 2.5;
    color: #29316c;
    text-align: center;
    transition: all ease-out 0.3s;
}
.u-title .s-more:hover{ box-shadow:2px 1px 4px rgba(41,49,108,0.4)}
.u-title .s-more:hover img{
   transform: translateX(15px);
}
.u-title .s-more img, .u-title .s-more em {
    font-style: normal; 
    vertical-align: middle;
}
.u-title .s-more img {
    margin-left: 1em; transition: all 2s;
}
.u-title span {
    display: block;
    width: 2.5em;
    height: 3px;
    overflow: hidden;
    margin: 0.8em auto 0;
    background: #29316c;
}
/*product*/
.g-product {
    height: auto;
    overflow: hidden;
}
.g-product .m-t, .g-product .m-c, .g-product .m-f {
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc {
    position: relative;
}
.g-product .m-c .s-product.s-pc .s-classify {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 23.5%;
    height: 15.75em;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc .s-classify .s-t, .g-product .m-c .s-product.s-pc .s-classify .s-c {
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc .s-classify .s-t {
    background: #fff;
}
.g-product .m-c .s-product.s-pc .s-classify .s-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 2.8rem;
    color: #333;
    line-height: 2.5;
    text-align: center;
}
.g-product .m-c .s-product.s-pc .s-classify .s-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.25em;
}
.g-product .m-c .s-product.s-pc .s-classify .s-c a {
    display: inline-block;
    width: 47.5%;
    background: #dfdede;
    margin: 0.5em 0;
    font-size: 1.6rem;
    line-height: 3;
    color: #333;
    text-align: center;
    transition: all ease-out 0.3s;
}
.g-product .m-c .s-product.s-pc .s-classify .s-c a:hover, .g-product .m-c .s-product.s-pc .s-classify .s-c a.on {
    background: #29316c;
    color: #fff;
}
.g-product .m-c .s-product.s-pc .s-item {
    width: 100%;
    height: 30.5em;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc .s-item .s-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc .s-item .s-col {
    width: 23.5%;
    height: 100%;
    overflow: hidden;
}
.g-product .m-c .s-product.s-pc .s-item .s-col ul {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}
.g-product .m-c .s-product.s-pc .s-item .s-col li {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    padding-bottom: 2.2em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col li:hover img {
    transform: scale(1.05);
}
.g-product .m-c .s-product.s-pc .s-item .s-col li:hover .s-info {
    background: #be0304;
}
.g-product .m-c .s-product.s-pc .s-item .s-col li:hover .s-info h3 {
    color: #fff;
    justify-content: center;
}
.g-product .m-c .s-product.s-pc .s-item .s-col li:hover .s-info img {
    display: none;
}
.g-product .m-c .s-product.s-pc .s-item .s-col:first-child ul {
    flex-direction: column;
    justify-content: flex-end;
}
.g-product .m-c .s-product.s-pc .s-item .s-col:first-child li {
    height: 13.75em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col:nth-child(2) ul {
    flex-direction: column;
    justify-content: space-between;
}
.g-product .m-c .s-product.s-pc .s-item .s-col:nth-child(2) li:first-child {
    height: 15.75em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col:nth-child(2) li:last-child {
    height: 13.75em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large {
    width: 50%;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large .s-col {
    width: 50%;
    float: left;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large ul {
    justify-content: space-between;
    flex-wrap: wrap;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large li {
    width: 48.5%;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large li:first-child, .g-product .m-c .s-product.s-pc .s-item .s-col.s-large li:nth-child(2) {
    height: 10.5em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large li:nth-child(3) {
    width: 100%;
    height: 19em;
    margin-top: 1em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col.s-large li .s-pic {
    padding: 0 2.5em 2em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em 2em;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-pic img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-info {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.5em 1em;
    transition: all ease-out 0.3s;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    color: #333;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-info h3 span, .g-product .m-c .s-product.s-pc .s-item .s-col .s-info h3 img {
    vertical-align: middle;
}
.g-product .m-c .s-product.s-pc .s-item .s-col .s-info a {
    color: inherit;
}
.g-product .m-c .s-product.s-wap .s-classify, .g-product .m-c .s-product.s-wap .s-item {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product.s-wap .s-classify {
    text-align: center;
}
.g-product .m-c .s-product.s-wap .s-classify a {
    display: inline-block;
    width: 30%;
    height: auto;
    overflow: hidden;
    margin: 0.25em 1%;
    background: #dfdede;
    font-size: 1.4rem;
    line-height: 2.5;
    color: #333;
    text-align: center;
}
.g-product .m-c .s-product.s-wap .s-classify a.on {
    background: #29316c;
    color: #fff;
}

.g-product .m-c .s-product.s-wap .s-item {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product.s-wap .s-item ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    flex-wrap: wrap;
}
.g-product .m-c .s-product.s-wap .s-item li {
    width: 48%;
    height: auto;
    overflow: hidden;
    margin: 0.5em 0;
}
.g-product .m-c .s-product.s-wap .s-item li:first-child {
    width: 100%;
}
.g-product .m-c .s-product.s-wap .s-item li .s-pic, .g-product .m-c .s-product.s-wap .s-item li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-product .m-c .s-product.s-wap .s-item li .s-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-sizing: border-box;
    padding: 1em;
    text-align: center;
}
.g-product .m-c .s-product.s-wap .s-item li .s-pic img {
    display: block;
    width: 100%;
    height: auto;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info {
    background: #be0304;
    box-sizing: border-box;
    padding: 0.5em;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.5;
    color: #fff;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info h3 span, .g-product .m-c .s-product.s-wap .s-item li .s-info h3 img {
    vertical-align: middle;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info h3 span {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    max-width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info h3 img {
    max-width: 20%;
    height: 0.75em;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0.5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.2rem;
    color: #fff;
}
.g-product .m-c .s-product.s-wap .s-item li .s-info a {
    color: inherit;
}
.g-product .m-f .s-more {
    display: block;
    width: 11.6875em;
    height: auto;
    overflow: hidden;
    margin: 1.5em auto 0;
    box-sizing: border-box;
    border: 1px solid #29316c;
    border-radius: 2em;
    font-size: 1.6rem;
    line-height: 2.5;
    color: #29316c;
    text-align: center;
    transition: all ease-out 0.3s;
}
.g-product .m-f .s-more:hover{ box-shadow:2px 1px 4px rgba(41,49,108,0.4)}
.g-product .m-f .s-more:hover img{
   transform: translateX(15px);
}
.g-product .m-f .s-more img, .g-product .m-f .s-more em {
    font-style: normal; 
    vertical-align: middle;
}
.g-product .m-f .s-more img {
    margin-left: 1em; transition: all 2s;
}
/*trait*/
.g-trait {
    height: auto;
    overflow: hidden;
}
.g-trait .m-t, .g-trait .m-c {
    height: auto;
    overflow: hidden;
}
.g-trait .m-c {
    position: relative;
    box-sizing: border-box;
    padding-top: 3.5em;
}
.g-trait .m-c .s-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 21em;
    overflow: hidden;
    background: url("../images/trait-bg.png") center center no-repeat;
    background-size: cover;
    pointer-events: none;
}
.g-trait .m-c .s-bg img {
    display: block;
    width: 100%;
}
.g-trait .m-c ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-trait .m-c li {
    width: 21.5%;
    height: 400PX;
    overflow: hidden;
    background: #f6f6f6;
}
.g-trait .m-c li:hover .s-aside aside span {
    background-image: url("../images/arrow-white.png");
}
.g-trait .m-c li:hover .s-aside aside:after {
    transform: scaleX(1);
}
.g-trait .m-c li:hover .s-main .s-pic {
    transform: translateY(-8px);
}
.g-trait .m-c li .s-aside, .g-trait .m-c li .s-main {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-trait .m-c li .s-aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    padding-left: 1em;
}
.g-trait .m-c li .s-aside h3 {
    width: auto;
    height: auto;
    overflow: hidden;
    font-size: 2.4rem;
    color: #333;
}
.g-trait .m-c li .s-aside aside {
    position: relative;
    display: block;
    width: 30%;
    height: 2.8em;
    overflow: hidden;
    box-sizing: border-box;
    border-left: 1px solid #ccc;
    transform: perspective(1px) translateZ(0);
}
.g-trait .m-c li .s-aside aside span {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url("../images/arrow-black.png") center center no-repeat;
    background-size: auto 40%;
    transition: all ease-out 0.3s;
}
.g-trait .m-c li .s-aside aside:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #bd0304;
    transform: scaleX(0);
    transform-origin: right;
    transition: all ease-out 0.3s;
}
.g-trait .m-c li .s-main {
    box-sizing: border-box;
    padding: 1em;
}
.g-trait .m-c li .s-main .s-info, .g-trait .m-c li .s-main .s-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-trait .m-c li .s-main .s-info h3, .g-trait .m-c li .s-main .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-trait .m-c li .s-main .s-info h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 2.8rem;
    color: #333;
}
.g-trait .m-c li .s-main .s-info p {
    margin-top: 0.5em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 1.6rem;
    color: #666;
    line-height: 1.75;
}
.g-trait .m-c li .s-main .s-info a {
    color: inherit;
}
.g-trait .m-c li .s-main .s-pic {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 1em;
    text-align: center;
    transition: all ease-out 0.3s;
}
.g-trait .m-c li .s-main .s-pic img {
    width: 100%;
    height: auto;
}
/*advantage*/
.g-advantage {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 30px;
}
.g-advantage .m-t, .g-advantage .m-c {
    height: auto;
    overflow: hidden;
}
.g-advantage .m-c ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-advantage .m-c li {
    width: 32%;
    height: auto;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1em;
    box-sizing: border-box;
    padding: 2em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.g-advantage .m-c li:hover {
    background-image: url("../images/adv-bg.png");
}
.g-advantage .m-c li:hover h3, .g-advantage .m-c li:hover p {
    color: #fff;
}
.g-advantage .m-c li:hover span {
    background-color: #595f8d;
}
.g-advantage .m-c li:nth-child(1):hover span {
    background-image: url("../images/core-active-1.png");
}
.g-advantage .m-c li:nth-child(1) span {
    background-image: url("../images/core-1.png");
}
.g-advantage .m-c li:nth-child(2):hover span {
    background-image: url("../images/core-active-2.png");
}
.g-advantage .m-c li:nth-child(2) span {
    background-image: url("../images/core-2.png");
}
.g-advantage .m-c li:nth-child(3):hover span {
    background-image: url("../images/core-active-3.png");
}
.g-advantage .m-c li:nth-child(3) span {
    background-image: url("../images/core-3.png");
}
.g-advantage .m-c li:nth-child(4):hover span {
    background-image: url("../images/core-active-4.png");
}
.g-advantage .m-c li:nth-child(4) span {
    background-image: url("../images/core-4.png");
}
.g-advantage .m-c li:nth-child(5):hover span {
    background-image: url("../images/core-active-5.png");
}
.g-advantage .m-c li:nth-child(5) span {
    background-image: url("../images/core-5.png");
}
.g-advantage .m-c li:nth-child(6):hover span {
    background-image: url("../images/core-active-6.png");
}
.g-advantage .m-c li:nth-child(6) span {
    background-image: url("../images/core-6.png");
}
.g-advantage .m-c li span {
    display: block;
    width: 7em;
    height: 7em;
    overflow: hidden;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 60%;
    box-sizing: border-box;
    border-radius: 50%;
}
.g-advantage .m-c li h3, .g-advantage .m-c li p {
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: all ease-out 0.3s;
}
.g-advantage .m-c li h3 {
    margin-top: 0.25em;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 2.8rem;
    text-align: center;
    color: #333;
}
.g-advantage .m-c li a {
    color: inherit;
}
.g-advantage .m-c li p {
    margin-top: 0.5em;
    font-size: 1.6rem;
    color: #666;
    line-height: 1.5;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
}
/*about*/
.g-about {
    height: auto;
    overflow: hidden;
    background: url("../images/about-bg.png") center center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 3em 0;
}
.g-about .m-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-about .s-info, .g-about .s-pic {
    height: auto;
    overflow: hidden;
}
.g-about .s-info {
    width: 42.5%;
}
.g-about .s-info a {
    margin-left: 0;
    color: inherit;
}
.g-about .s-info .s-t, .g-about .s-info .s-c {
    height: auto;
    overflow: hidden;
}
.g-about .s-info .s-t.u-title {
    padding-top: 0;
}
.g-about .s-info .s-t h3, .g-about .s-info .s-t p {
    color: #fff;
    text-align: left;
    letter-spacing: 1px;
}
.g-about .s-info .s-t .s-more {
	color: #fff;
	border-color: #fff;
}
.g-about .s-info .s-t h3:after {
    background-image: url("../images/circle-white.png");
}
.g-about .s-info .s-t p {
    font-size: 3.2rem;
}
.g-about .s-info .s-t span {
    background: #fff;
    margin: 0;
}
.g-about .s-info .s-c .s-desc, .g-about .s-info .s-c .s-item {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-about .s-info .s-c .s-desc p {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.5em 0;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.75;
}
.g-about .s-info .s-c .s-desc .s-more {
    display: block;
    width: 13.35714286em;
    height: auto;
    overflow: hidden;
    margin: 1.5em 0;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 1.75em;
    font-size: 1.4rem;
    line-height: 2.5;
    color: #fff;
    text-align: center;
}
.g-about .s-info .s-c .s-desc .s-more:hover img{
   transform: translateX(15px);
}
.g-about .s-info .s-c .s-desc .s-more img, .g-about .s-info .s-c .s-desc .s-more em {
    vertical-align: middle;
}
.g-about .s-info .s-c .s-desc .s-more img {
    margin-left: 1em;
    transition: all 2s;
}
.g-about .s-info .s-c .s-desc .s-more em {
    font-style: normal;
}
.g-about .s-info .s-c .s-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5em;
}
.g-about .s-info .s-c .s-item .s-col {
    width: auto;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
}
.g-about .s-info .s-c .s-item .s-col h3, .g-about .s-info .s-c .s-item .s-col p {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.g-about .s-info .s-c .s-item .s-col h3 {
    font-size: 3.6rem;
}
.g-about .s-info .s-c .s-item .s-col h3 small {
    font-size: 1.8rem;
    margin-left: 0.25em;
}
.g-about .s-info .s-c .s-item .s-col p {
    font-size: 2rem;
}
.g-about .s-pic {
    width: 55%;
    border: 0.25em solid #fff;
    box-sizing: border-box;
    border-radius: 5px;
}
.g-about .s-pic:hover img {
    transform: scale(1.05);
}
.g-about .s-pic img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
/*general*/
.u-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 5em;
    box-sizing: border-box;
    border-bottom: 1px solid #d2d2d2;
}
.u-bar h3, .u-bar ul {
    width: auto;
    height: auto;
    overflow: hidden;
}
.u-bar h3 {
    font-size: 3.6rem;
    color: #333;
}
.u-bar li {
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 0 2.5em;
    float: left;
    font-size: 2rem;
    color: #333;
    box-sizing: border-box;
    border-bottom: 5px solid transparent;
}
.u-bar li.on, .u-bar li:hover {
    border-bottom-color: #29316c;
    color: #29316c;
}
.u-bar li a {
    color: inherit;
}
/*honor*/
.g-honor {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 0.5em;
}
.g-honor .m-t, .g-honor .m-c {
    height: auto;
    overflow: hidden;
}
.g-honor .m-c {
    margin-top: 2em;
}
.g-honor .m-c .s-honor {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-honor .m-c .s-honor.s-pc ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-honor .m-c .s-honor.s-pc li {
    width: 14em;
    height: 10em;
    overflow: hidden;
    margin: 0 0.5em;
    float: left;
}
.g-honor .m-c .s-honor.s-pc li:hover img {
    transform: scale(1.05);
}
.g-honor .m-c .s-honor.s-pc li .s-pic, .g-honor .m-c .s-honor.s-pc li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-honor .m-c .s-honor.s-pc li .s-pic {
    background: #fff;
    box-sizing: border-box;
  padding: 0.5em 0.5em 0.5em 0.5em;
}
.g-honor .m-c .s-honor.s-pc li .s-pic img {
    display: block;
    width: 100%;
    height: auto;
    transition: all ease-out 0.3s;
}
.g-honor .m-c .s-honor.s-pc li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 2.5;
    color: #333;
    text-align: center;
}
.g-honor .m-c .s-honor.s-pc li .s-info a {
    color: inherit;
}
.g-honor .m-c .s-honor.s-wap ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-honor .m-c .s-honor.s-wap li {
    width: 48%;
    height: auto;
    overflow: hidden;
    margin: 0.25em 0;
}
.g-honor .m-c .s-honor.s-wap li .s-pic, .g-honor .m-c .s-honor.s-wap li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-honor .m-c .s-honor.s-wap li .s-pic {
    background: #fff;
    box-sizing: border-box;
    padding: 0.5em 1.5em;
}
.g-honor .m-c .s-honor.s-wap li .s-pic img {
    display: block;
    width: 100%;
}
.g-honor .m-c .s-honor.s-wap li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 2.5;
    color: #333;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-honor .m-c .s-honor.s-wap li .s-info a {
    color: inherit;
}
/*application*/
.g-application {
    height: auto;
    overflow: hidden;
}
.g-application .m-t, .g-application .m-c {
    height: auto;
    overflow: hidden;
}
.g-application .m-c {
    box-sizing: border-box;
    padding-bottom: 0.5em;
}
.g-application .m-c .bd {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-application .m-c .bd li {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-application .m-c .bd li .s-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-application .m-c .bd li .s-pic img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%;
}
.g-application .m-c .bd li .s-cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.g-application .m-c .bd li .s-cover h3, .g-application .m-c .bd li .s-cover p {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.g-application .m-c .bd li .s-cover h3 {
    font-size: 4.8rem;
    font-weight: normal;
}
.g-application .m-c .bd li .s-cover p {
    margin: 0.5em 0;
    font-size: 2rem;
}
.g-application .m-c .bd li .s-cover a {
    color: inherit;
}
.g-application .m-c .bd li .s-cover .s-more {
    display: block;
    width: 13.35714286em;
    height: auto;
    overflow: hidden;
    margin: 1em auto;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 1.75em;
    font-size: 1.4rem;
    line-height: 2.5;
    color: #fff;transition: all 2s;
    text-align: center;
}
.g-application .m-c .bd li .s-cover .s-more:hover{ border: 1px solid #29316c; background:#29316c}
.g-application .m-c .bd li .s-cover .s-more:hover img{ transform:translateX(15px)}
.g-application .m-c .bd li .s-cover .s-more img, .g-application .m-c .bd li .s-cover .s-more em {
    vertical-align: middle;
}
.g-application .m-c .bd li .s-cover .s-more img {
    margin-left: 1em; transition: all 2s;
}
.g-application .m-c .bd li .s-cover .s-more em {
    font-style: normal;
}
.g-application .m-c .hd {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: max-content;
    height: 8em;
    overflow: hidden;
    background: #fff;
    margin: -4em auto 0;
    box-sizing: border-box;
    padding: 0 1em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
.g-application .m-c .hd .prev, .g-application .m-c .hd .next {
    width: 1.5em;
    height: 2.5em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% auto;
    transition: all ease-out 0.3s;
}
.g-application .m-c .hd .prev {
    background-image: url("../images/app-prev.png");
}
.g-application .m-c .hd .prev:hover {
    background-image: url("../images/app-active-prev.png");
}
.g-application .m-c .hd .next {
    background-image: url("../images/app-next.png");
}
.g-application .m-c .hd .next:hover {
    background-image: url("../images/app-active-next.png");
}
.g-application .m-c .hd ul {
    width: 37.5em;
    height: 100%;
    overflow: hidden;
    margin: 0 10px;
}
.g-application .m-c .hd ul .temp {
    height: 100%;
    overflow: hidden;
}
.g-application .m-c .hd ul li {
    width: 7.5em;
    height: 100%;
    overflow: hidden;
    float: left;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    padding: 1.65em 0;
}
.g-application .m-c .hd ul li:hover, .g-application .m-c .hd ul li.on {
    border-bottom-color: #29316c;
}
.g-application .m-c .hd ul li:hover .s-main p, .g-application .m-c .hd ul li.on .s-main p {
    color: #29316c;
}
/*.g-application .m-c .hd ul li:nth-child(1):hover .s-main span {
    background-image: url("../images/app-active-1.png");
}
.g-application .m-c .hd ul li:nth-child(1) .s-main span {
    background-image: url("../images/app-1.png");
}
.g-application .m-c .hd ul li:nth-child(2):hover .s-main span {
    background-image: url("../images/app-active-2.png");
}
.g-application .m-c .hd ul li:nth-child(2) .s-main span {
    background-image: url("../images/app-2.png");
}
.g-application .m-c .hd ul li:nth-child(3):hover .s-main span {
    background-image: url("../images/app-active-3.png");
}
.g-application .m-c .hd ul li:nth-child(3) .s-main span {
    background-image: url("../images/app-3.png");
}
.g-application .m-c .hd ul li:nth-child(4):hover .s-main span {
    background-image: url("../images/app-active-4.png");
}
.g-application .m-c .hd ul li:nth-child(4) .s-main span {
    background-image: url("../images/app-4.png");
}
.g-application .m-c .hd ul li:nth-child(5):hover .s-main span {
    background-image: url("../images/app-active-5.png");
}
.g-application .m-c .hd ul li:nth-child(5) .s-main span {
    background-image: url("../images/app-5.png");
}*/
.g-application .m-c .hd ul li .s-main {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1.6em;
    border-left: 1px solid #ccc;
}
.g-application .m-c .hd ul li .s-main span, .g-application .m-c .hd ul li .s-main p {
    width: 100%;
    overflow: hidden;
    transition: all ease-out 0.3s;
}
.g-application .m-c .hd ul li .s-main span {
    display: block;
    height: 2.8em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%; opacity: 0.75;
}
.g-application .m-c .hd ul li:hover .s-main span {
    opacity: 1; /*box-shadow: 2px 1px 4px #29316c;*/
}
.g-application .m-c .hd ul li .s-main p {
    margin-top: 0.5em;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-application .m-c .hd ul li:first-child .s-main {
    border-left-color: transparent;
}
/*news*/
.g-news {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}
.g-news .m-t, .g-news .m-c {
    height: auto;
    overflow: hidden;
}
.g-news .m-c {
    box-sizing: border-box;
    padding-top: 2.75em;
}
.g-news .m-c .s-news {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-pc ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.g-news .m-c .s-news.s-pc li {
    position: relative;
    width: 23.5%;
    height: 20.75em;
    overflow: hidden;
    margin-left: 2%;
}
.g-news .m-c .s-news.s-pc li:first-child {
    margin-left: 0;
}
.g-news .m-c .s-news.s-pc li:hover .s-aside {
    opacity: 0;
    visibility: hidden;
}
.g-news .m-c .s-news.s-pc li:hover .s-info {
    background: #29316c;
}
.g-news .m-c .s-news.s-pc li:hover .s-info h3, .g-news .m-c .s-news.s-pc li:hover .s-info p {
    color: #fff;
}
.g-news .m-c .s-news.s-pc li:hover .s-info h3 {
    display: inherit;
    box-sizing: border-box;
    padding: 0 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-news .m-c .s-news.s-pc li:hover .s-info p {
    display: none;
}
.g-news .m-c .s-news.s-pc li .s-aside, .g-news .m-c .s-news.s-pc li .s-pic, .g-news .m-c .s-news.s-pc li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-pc li .s-aside, .g-news .m-c .s-news.s-pc li .s-info {
    position: absolute;
    z-index: 1;
    left: 0;
    background: #f6f6f6;
}
.g-news .m-c .s-news.s-pc li .s-aside {
    top: 0;
    box-sizing: border-box;
    padding-bottom: 0.5em;
}
.g-news .m-c .s-news.s-pc li .s-aside h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 3.2rem;
    font-weight: normal;
    color: #333;
}
.g-news .m-c .s-news.s-pc li .s-aside h3 small {
    margin-left: 0.5em;
    font-size: 1.4rem;
    color: #999;
}
.g-news .m-c .s-news.s-pc li .s-pic {
    height: 100%;
}
.g-news .m-c .s-news.s-pc li .s-pic a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.g-news .m-c .s-news.s-pc li .s-info {
    bottom: 0;
    box-sizing: border-box;
}
.g-news .m-c .s-news.s-pc li .s-info h3, .g-news .m-c .s-news.s-pc li .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-pc li .s-info h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 2rem;
    line-height: 2.5;
    color: #333;
}
.g-news .m-c .s-news.s-pc li .s-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 0.5em;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #666;
}
.g-news .m-c .s-news.s-pc li .s-info a {
    color: inherit;
}
.g-news .m-c .s-news.s-wap {
    position: relative;
}
.g-news .m-c .s-news.s-wap .bd-wap {
    position: relative;
}
.g-news .m-c .s-news.s-wap .bd-main {
    position: relative;
}
.g-news .m-c .s-news.s-wap .prev, .g-news .m-c .s-news.s-wap .next {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 1em;
    height: 1.5em;
    overflow: hidden;
    margin-top: -1.375em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 50%;
    background-color: rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    transition: all ease-out 0.3s;
    opacity: 0.8;
}
.g-news .m-c .s-news.s-wap .prev:hover, .g-news .m-c .s-news.s-wap .next:hover {
    opacity: 1;
}
.g-news .m-c .s-news.s-wap .prev {
    left: 0;
    background-image: url("../images/prev-white.png");
}
.g-news .m-c .s-news.s-wap .next {
    right: 0;
    background-image: url("../images/next-white.png");
}
.g-news .m-c .s-news.s-wap .bd {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-wap .bd .temp {
    position: relative;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-wap .bd .group {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    float: left;
}
.g-news .m-c .s-news.s-wap .bd li {
    width: 48%;
    height: auto;
    overflow: hidden;
    float: left;
}
.g-news .m-c .s-news.s-wap .bd li .s-aside, .g-news .m-c .s-news.s-wap .bd li .s-pic, .g-news .m-c .s-news.s-wap .bd li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-news .m-c .s-news.s-wap .bd li .s-aside {
    box-sizing: border-box;
    padding-bottom: 0.25em;
}
.g-news .m-c .s-news.s-wap .bd li .s-aside h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.8rem;
    font-weight: normal;
    color: #333;
}
.g-news .m-c .s-news.s-wap .bd li .s-aside h3 small {
    margin-left: 0.25em;
    font-size: 1.2rem;
    color: #999;
}
.g-news .m-c .s-news.s-wap .bd li .s-pic {
    height: 5.5em;
}
.g-news .m-c .s-news.s-wap .bd li .s-pic a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.g-news .m-c .s-news.s-wap .bd li .s-info {
    box-sizing: border-box;
    padding-top: 0.5em;
    transition: all ease-out 0.3s;
}
.g-news .m-c .s-news.s-wap .bd li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
}
.g-news .m-c .s-news.s-wap .bd li .s-info a {
    color: inherit;
}
.g-news .m-c .s-news.s-wap .hd {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.g-news .m-c .s-news.s-wap .hd li {
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    overflow: hidden;
    margin: 0 0.25em;
    background: url("../images/point.png") center center no-repeat;
    background-size: 100% 100%;
}
.g-news .m-c .s-news.s-wap .hd li.on {
    background-image: url("../images/point-active.png");
}
/*partner*/
.g-partner {
    height: auto;
    overflow: hidden;
}
.g-partner .m-t, .g-partner .m-c {
    height: auto;
    overflow: hidden;
}
.g-partner .m-c ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-partner .m-c li {
    position: relative;
    width: 25%;
    height: auto;
    overflow: hidden;
}
.g-partner .m-c li:hover img {
    transform: scale(1.2);
}
.g-partner .m-c li:hover .s-cover {
    visibility: visible;
    opacity: 1;
}
.g-partner .m-c li img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
.g-partner .m-c li .s-cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(47, 55, 112, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.g-partner .m-c li .s-cover h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em;
    font-size: 4.8rem;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    text-align: center;
}
.g-partner .m-c li .s-cover a {
    color: inherit;
}
/*footer*/
.g-footer {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1em 0;
    background: #fff;
}
.g-footer .m-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.g-footer .s-info, .g-footer .s-nav {
    height: auto;
    overflow: hidden;
}
.g-footer .s-info {
    width: 46.25%;
    box-sizing: border-box;
}
.g-footer .s-info .s-t, .g-footer .s-info .s-c {
    height: auto;
    overflow: hidden;
}
.g-footer .s-info .s-t {
    display: flex;
    justify-content: space-between;
}
.g-footer .s-info .s-t .s-contact, .g-footer .s-info .s-t .s-qrcode {
    width: 50%;
    height: auto;
    overflow: hidden;
}
.g-footer .s-info .s-t .s-contact {
    box-sizing: border-box;
    padding-right: 0.5em;
}
.g-footer .s-info .s-t .s-contact .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.5em 0;
    font-size: 1.38rem;
    color: #666;
}
.g-footer .s-info .s-t .s-contact .s-row p, .g-footer .s-info .s-t .s-contact .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.g-footer .s-info .s-t .s-contact .s-row h3 {
    font-size: 3rem;
    color: #29316c;
}
.g-footer .s-info .s-t .s-qrcode {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-footer .s-info .s-t .s-qrcode .s-col {
    width: 48%;
}
.g-footer .s-info .s-t .s-qrcode .s-col .s-pic, .g-footer .s-info .s-t .s-qrcode .s-col .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-footer .s-info .s-t .s-qrcode .s-col .s-pic {
    box-sizing: border-box;
    border: 0.25em solid #29316c;
    border-radius: 5px;
}
.g-footer .s-info .s-t .s-qrcode .s-col .s-pic img {
    display: block;
    width: 100%;
}
.g-footer .s-info .s-t .s-qrcode .s-col .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0.5em;
    font-size: 1.4rem;
    color: #333;
    text-align: center;
}
.g-footer .s-info .s-c {
    margin-top: 1em;
    font-size: 1.4rem;
    color: #333;
}
.g-footer .s-info .s-c b, .g-footer .s-info .s-c a {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
}
.g-footer .s-info .s-c a {
    margin-right: 2.5em;
    color: inherit;
    transition: all ease-out 0.3s;
}
.g-footer .s-info .s-c a:hover {
    text-decoration: underline;
    color: #29316c;
}
.g-footer .s-nav {
    width: 51.25%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    padding-left: 1em;
    padding-top: 0.5em;
}
.g-footer .s-nav .s-col {
    width: 16.66666667%;
    height: auto;
    overflow: hidden;
}
.g-footer .s-nav .s-col h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.6rem;
    color: #333;
}
.g-footer .s-nav .s-col ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 0.75em;
}
.g-footer .s-nav .s-col li {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.2rem;
    color: #666;
    line-height: 2.25;
    transition: all ease-out 0.3s;
}
.g-footer .s-nav .s-col li:hover {
    text-decoration: underline;
    color: #29316c;
}
.g-footer .s-nav .s-col a {
    color: inherit;
}
/*copyright*/
.g-copyright {
    height: auto;
    overflow: hidden;
    background: #081016;
}
.g-copyright p {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1em 0;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #ccc;
    text-align: center;
}
.g-copyright a {
    color: inherit;
    transition: all ease-out 0.3s;
}
.g-copyright a:hover {
    text-decoration: underline;
}
/*menubar*/
.g-menubar {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.75em;
}
.g-menubar .s-logo {
    position: absolute;
    z-index: 1;
    top: -0.5em;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    overflow: hidden;
    background: #fff;
    margin-left: -1.5em;
    box-sizing: border-box;
    padding: 0 0.25em;
    border-radius: 50%;
    border: 1px solid #29316c;
}
.g-menubar .s-logo img {
    display: block;
    width: 100%;
}
.g-menubar ul {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #29316c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.g-menubar li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.25em 0;
}
.g-menubar li:nth-child(3) {
    margin-left: 20%;
}
.g-menubar li:nth-child(1) span {
    background-image: url("../images/bar-1.png");
}
.g-menubar li:nth-child(2) span {
    background-image: url("../images/bar-2.png");
}
.g-menubar li:nth-child(3) span {
    background-image: url("../images/bar-3.png");
}
.g-menubar li:nth-child(4) span {
    background-image: url("../images/bar-4.gif");
}
.g-menubar li span, .g-menubar li h3 {
    width: 100%;
    overflow: hidden;
}
.g-menubar li span {
    display: block;
    height: 1.25em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}
.g-menubar li h3 {
    /* margin-top: 0.25em; */
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
}
/*list-product*/
.i-product {
    height: auto;
    overflow: hidden;
    margin-top: 1.5em;
    box-sizing: border-box;
    padding: 1em 0;
}
.i-product .m-t, .i-product .m-c {
    height: auto;
}
.i-product .m-t {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.i-product .m-t .s-classify, .i-product .m-t .s-product {
    height: auto;
}
.i-product .m-t .s-classify {
    width: 20%;
    overflow: hidden;
}
.i-product .m-t .s-classify .s-main, .i-product .m-t .s-classify .s-aside {
    height: auto;
    overflow: hidden;
    background: #29316c;
}
.i-product .m-t .s-classify .s-main {
    box-sizing: border-box;
    padding: 0.75em;
}
.i-product .m-t .s-classify .s-aside {
    margin-top: 0.75em;
    box-sizing: border-box;
    padding: 0.75em;
    line-height: 1.75;
}
.i-product .m-t .s-classify .s-aside p, .i-product .m-t .s-classify .s-aside h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
}
.i-product .m-t .s-classify .s-aside p {
    font-size: 1.6rem;
}
.i-product .m-t .s-classify .s-aside h3 {
    font-size: 2.8rem;
}
.i-product .m-t .s-classify .s-t, .i-product .m-t .s-classify .s-c {
    height: auto;
    overflow: hidden;
}
.i-product .m-t .s-classify .s-t h3, .i-product .m-t .s-classify .s-t aside {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.i-product .m-t .s-classify .s-t h3 {
    font-size: 2.8rem;
}
.i-product .m-t .s-classify .s-t aside {
    margin-top: 0.5em;
    font-size: 1.6rem;
}
.i-product .m-t .s-classify .s-c {
    margin-top: 0.5em;
}
.i-product .m-t .s-classify .s-c .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.375em 0;
    background: #fff;
}
.i-product .m-t .s-classify .s-c .s-row.on h3 img {
    transform: rotate(90deg);
}
.i-product .m-t .s-classify .s-c .s-row.on .s-sub {
    display: block;
}
.i-product .m-t .s-classify .s-c .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0.5em;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2.5;
    color: #333;
}
.i-product .m-t .s-classify .s-c .s-row h3 span, .i-product .m-t .s-classify .s-c .s-row h3 img {
    display: inline-block;
}
.i-product .m-t .s-classify .s-c .s-row h3 span {
    width: 80%;
}
.i-product .m-t .s-classify .s-c .s-row h3 span a {
    color: inherit;
}
.i-product .m-t .s-classify .s-c .s-row h3 img {
    height: 1em;
}
.i-product .m-t .s-classify .s-c .s-row .s-sub {
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #e9e9e9;
}
.i-product .m-t .s-classify .s-c .s-row .s-sub li {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e4;
    padding: 0 0.625em;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.5;
}
.i-product .m-t .s-classify .s-c .s-row .s-sub a {
    color: inherit;
}
.i-product .m-t .s-product {
    width: 77.5%;
}
.i-product .m-t .s-product ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.i-product .m-t .s-product li {
    width: 30%;
    height: auto;
    overflow: hidden;
    margin-bottom: 1em;
}
.i-product .m-t .s-product li:hover .s-pic img {
    transform: scale(1.05);
}
.i-product .m-t .s-product li:hover .s-info:after {
    transform: scaleX(1);
}
.i-product .m-t .s-product li:hover .s-info h3 {
    color: #29316c;
}
.i-product .m-t .s-product li:hover .s-info h3 img {
    transform: translateY(0);
}
.i-product .m-t .s-product li .s-pic, .i-product .m-t .s-product li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-product .m-t .s-product li .s-pic img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
.i-product .m-t .s-product li .s-info {
    position: relative;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    padding: 1em 0;
}
.i-product .m-t .s-product li .s-info:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: #29316c;
    transform: scaleX(0);
    transform-origin: left;
    transition: all ease-out 0.3s;
}
.i-product .m-t .s-product li .s-info.on:after {
    left: 0;
}
.i-product .m-t .s-product li .s-info.off:after {
    left: 100%;
}
.i-product .m-t .s-product li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: normal;
    color: #333;
}
.i-product .m-t .s-product li .s-info h3 span, .i-product .m-t .s-product li .s-info h3 img {
    vertical-align: middle;
}
.i-product .m-t .s-product li .s-info h3 span {
    display: inline-block;
    width: 80%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.i-product .m-t .s-product li .s-info h3 img {
    height: 1.2em;
    transform: translateY(120%);
    transition: all ease-out 0.3s;
}
.i-product .m-t .s-product li .s-info a {
    color: inherit;
}
.i-product .m-c {
    margin-top: 2em;
    text-align: center;
}
/*list-case*/
.i-case {
    height: auto;
    overflow: hidden;
    margin-top: 1.5em;
    box-sizing: border-box;
    padding: 1em 0;
}
.i-case .m-t, .i-case .m-c {
    height: auto;
}
.i-case .m-t {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.i-case .m-t .s-classify, .i-case .m-t .s-product {
    height: auto;
}
.i-case .m-t .s-classify {
    width: 20%;
    overflow: hidden;
}
.i-case .m-t .s-classify .s-main, .i-case .m-t .s-classify .s-aside {
    height: auto;
    overflow: hidden;
    background: #29316c;
}
.i-case .m-t .s-classify .s-main {
    box-sizing: border-box;
    padding: 0.75em;
}
.i-case .m-t .s-classify .s-aside {
    margin-top: 0.75em;
    box-sizing: border-box;
    padding: 0.75em;
    line-height: 1.75;
}
.i-case .m-t .s-classify .s-aside p, .i-case .m-t .s-classify .s-aside h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
}
.i-case .m-t .s-classify .s-aside p {
    font-size: 1.6rem;
}
.i-case .m-t .s-classify .s-aside h3 {
    font-size: 2.8rem;
}
.i-case .m-t .s-classify .s-t, .i-case .m-t .s-classify .s-c {
    height: auto;
    overflow: hidden;
}
.i-case .m-t .s-classify .s-t h3, .i-case .m-t .s-classify .s-t aside {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.i-case .m-t .s-classify .s-t h3 {
    font-size: 2.8rem;
}
.i-case .m-t .s-classify .s-t aside {
    margin-top: 0.5em;
    font-size: 1.6rem;
}
.i-case .m-t .s-classify .s-c {
    margin-top: 0.5em;
}
.i-case .m-t .s-classify .s-c .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.375em 0;
    background: #fff;
}
.i-case .m-t .s-classify .s-c .s-row.on h3 img {
    transform: rotate(90deg);
}
.i-case .m-t .s-classify .s-c .s-row.on .s-sub {
    display: block;
}
.i-case .m-t .s-classify .s-c .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0.5em;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2.5;
    color: #333;
}
.i-case .m-t .s-classify .s-c .s-row h3 span, .i-case .m-t .s-classify .s-c .s-row h3 img {
    display: inline-block;
}
.i-case .m-t .s-classify .s-c .s-row h3 span {
    width: 80%;
}
.i-case .m-t .s-classify .s-c .s-row h3 img {
    height: 1em;
}
.i-case .m-t .s-classify .s-c .s-row .s-sub {
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #e9e9e9;
}
.i-case .m-t .s-classify .s-c .s-row .s-sub li {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e4;
    padding: 0 0.625em;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.5;
}
.i-case .m-t .s-classify .s-c .s-row .s-sub a {
    color: inherit;
}
.i-case .m-t .s-product {
    width: 100%;
}
.i-case .m-t .s-product ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.i-case .m-t .s-product li {
    width: 30%;
    height: auto;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1em;
    transition: all ease-out 0.3s;
}
.i-case.i-team .m-t .s-product li {
    background: none;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}
.i-case .m-t .s-product li:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.i-case .m-t .s-product li:hover .s-pic img {
    transform: scale(1.2);
}
.i-case .m-t .s-product li:hover .s-info h3:after {
    left: 0;
}
.i-case .m-t .s-product li:hover .s-info h3 {
    color: #29316c;
}
.i-case.i-team .m-t .s-product li:hover {
    border-bottom-color: #29316c;
    box-shadow: 0 0 0 transparent;
}
.i-case.i-team .m-t .s-product li:hover .s-info h3 {
    border-bottom-color: transparent;
}
.i-case .m-t .s-product li .s-pic, .i-case .m-t .s-product li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-case .m-t .s-product li .s-pic img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
.i-case .m-t .s-product li .s-info {
    box-sizing: border-box;
    padding: 1em;
}
.i-case .m-t .s-product li .s-info h3 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2;
    color: #333;
    transition: all ease-out 0.3s;
}
.i-case .m-t .s-product li .s-info h3:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: #29316c;
    transition: all ease-out 0.3s;
}
.i-case.i-team .m-t .s-product li .s-info h3 {
    border-bottom-color: transparent;
}
.i-case .m-t .s-product li .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 2;
    color: #666;
}
.i-case .m-t .s-product li .s-info h3 span, .i-case .m-t .s-product li .s-info h3 img {
    vertical-align: middle;
}
.i-case .m-t .s-product li .s-info h3 span {
    display: inline-block;
    width: 80%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.i-case .m-t .s-product li .s-info h3 img {
    height: 1.2em;
}
.i-case .m-t .s-product li .s-info a {
    color: inherit;
}
.i-case .m-c {
    margin-top: 2em;
    text-align: center;
}
/*list-pic*/
.i-pic {
    height: auto;
    overflow: hidden;
    margin-top: 1.5em;
    box-sizing: border-box;
    padding: 1em 0;
}
.i-pic .m-t, .i-pic .m-c {
    height: auto;
}
.i-pic .m-t {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.i-pic .m-t .s-classify, .i-pic .m-t .s-product {
    height: auto;
}
.i-pic .m-t .s-classify {
    width: 20%;
    overflow: hidden;
}
.i-pic .m-t .s-classify .s-main, .i-pic .m-t .s-classify .s-aside {
    height: auto;
    overflow: hidden;
    background: #29316c;
}
.i-pic .m-t .s-classify .s-main {
    box-sizing: border-box;
    padding: 0.75em;
}
.i-pic .m-t .s-classify .s-aside {
    margin-top: 0.75em;
    box-sizing: border-box;
    padding: 0.75em;
    line-height: 1.75;
}
.i-pic .m-t .s-classify .s-aside p, .i-pic .m-t .s-classify .s-aside h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
}
.i-pic .m-t .s-classify .s-aside p {
    font-size: 1.6rem;
}
.i-pic .m-t .s-classify .s-aside h3 {
    font-size: 2.8rem;
}
.i-pic .m-t .s-classify .s-t, .i-pic .m-t .s-classify .s-c {
    height: auto;
    overflow: hidden;
}
.i-pic .m-t .s-classify .s-t h3, .i-pic .m-t .s-classify .s-t aside {
    width: 100%;
    height: auto;
    overflow: hidden;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.i-pic .m-t .s-classify .s-t h3 {
    font-size: 2.8rem;
}
.i-pic .m-t .s-classify .s-t aside {
    margin-top: 0.5em;
    font-size: 1.6rem;
}
.i-pic .m-t .s-classify .s-c {
    margin-top: 0.5em;
}
.i-pic .m-t .s-classify .s-c .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.375em 0;
    background: #fff;
}
.i-pic .m-t .s-classify .s-c .s-row.on h3 img {
    transform: rotate(90deg);
}
.i-pic .m-t .s-classify .s-c .s-row.on .s-sub {
    display: block;
}
.i-pic .m-t .s-classify .s-c .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0.5em;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2.5;
    color: #333;
}
.i-pic .m-t .s-classify .s-c .s-row h3 span, .i-pic .m-t .s-classify .s-c .s-row h3 img {
    display: inline-block;
}
.i-pic .m-t .s-classify .s-c .s-row h3 span {
    width: 80%;
}
.i-pic .m-t .s-classify .s-c .s-row h3 img {
    height: 1em;
}
.i-pic .m-t .s-classify .s-c .s-row .s-sub {
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #e9e9e9;
}
.i-pic .m-t .s-classify .s-c .s-row .s-sub li {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e4;
    padding: 0 0.625em;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.5;
}
.i-pic .m-t .s-classify .s-c .s-row .s-sub a {
    color: inherit;
}
.i-pic .m-t .s-product {
    width: 100%;
}
.i-pic .m-t .s-product ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.i-pic .m-t .s-product li {
    width: 30%;
    height: auto;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2em;
    box-sizing: border-box;
    border-radius: 15px;
    transition: all ease-out 0.3s;
}
.i-pic .m-t .s-product li:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.i-pic .m-t .s-product li:hover .s-pic img {
    transform: scale(1.05);
}
.i-pic .m-t .s-product li:hover .s-info p em {
    width: 5em;
}
.i-pic .m-t .s-product li .s-pic, .i-pic .m-t .s-product li .s-info {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-pic .m-t .s-product li .s-pic img {
    display: block;
    width: 100%;
    transition: all ease-out 0.3s;
}
.i-pic .m-t .s-product li .s-info {
    box-sizing: border-box;
    padding: 1em;
}
.i-pic .m-t .s-product li .s-info h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: normal;
    line-height: 2;
    color: #333;
}
.i-pic .m-t .s-product li .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 2;
    color: #666;
}
.i-pic .m-t .s-product li .s-info p em {
    display: inline-block;
    width: 2em;
    height: 2px;
    overflow: hidden;
    background: #29356f;
    transition: all ease-out 0.3s;
}
.i-pic .m-t .s-product li .s-info h3 span, .i-pic .m-t .s-product li .s-info h3 img {
    vertical-align: middle;
}
.i-pic .m-t .s-product li .s-info h3 span {
    display: inline-block;
    width: 80%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.i-pic .m-t .s-product li .s-info h3 img {
    height: 1.2em;
}
.i-pic .m-t .s-product li .s-info a {
    color: inherit;
}
.i-pic .m-c {
    margin-top: 2em;
    text-align: center;
}
/**分类**/
.u-classify {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    box-sizing: border-box;
    padding-bottom: 6em;
}
.u-classify .s-desc, .u-classify .s-classify {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-desc {
    text-align: center;
}
.u-classify .s-desc h2, .u-classify .s-desc h3, .u-classify .s-desc p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-desc h2 {
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 60px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.u-classify .s-desc h3 {
    font-size: 5.6rem;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #fff;
}
.u-classify .s-desc p {
    margin-top: 1.8rem;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 1px;
    color: #fff;
}
.u-classify .s-desc span {
    display: inline-block;
    width: 45px;
    height: 2px;
    overflow: hidden;
    background: #fff;
}
.u-classify .s-classify {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 80em;
    height: auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    margin-left: -40em;
}
.u-classify .s-classify .s-main {
    width: 95%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.u-classify .s-classify .s-main .s-crumbs, .u-classify .s-classify .s-main .s-nav {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-classify .s-main .s-crumbs {
    font-size: 1.6rem;
    color: #999;
    line-height: 5;
    margin-left: 50px;
}
.u-classify .s-classify .s-main .s-crumbs i, .u-classify .s-classify .s-main .s-crumbs a, .u-classify .s-classify .s-main .s-crumbs small {
    display: inline-block;
    vertical-align: middle;
    color: #999;
}
.u-classify .s-classify .s-main .s-crumbs i {
    width: 1.2em;
    height: 1.2em;
    overflow: hidden;
    background: url(../images/home.png) center center no-repeat;
    background-size: contain;
}
.u-classify .s-classify .s-main .s-nav {
    margin-top: 0.5em;
}
.u-classify .s-classify .s-main .s-nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify .s-classify .s-main .s-nav li {
    position: relative;
    display: flex;
    align-items: center;
    height: 3em;
    overflow: hidden;
    font-size: 2rem;
    color: #333;
    text-align: center;
    flex: 1;
}
.u-classify .s-classify .s-main .s-nav li img {
    vertical-align: middle;
    margin-right: 8px;
}
.u-classify .s-classify .s-main .s-nav li.on {
    font-weight: bold;
}
.u-classify .s-classify .s-main .s-nav li.on:after, .u-classify .s-classify .s-main .s-nav li:hover:after {
    background: #29316c;
    font-weight: bold;
}
.u-classify .s-classify .s-main .s-nav li:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: transparent;
}
.u-classify .s-classify .s-main .s-nav li:last-child a {
    border-right-color: transparent;
}
.u-classify .s-classify .s-main .s-nav li a {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-right: 1px solid #333;
    color: inherit;
}
/**wap-分类**/
.u-classify-wap {
    height: auto;
    overflow: hidden;
}
.u-classify-wap .s-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 11em;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    box-sizing: border-box;
    padding-top: 2.5em;
}
.u-classify-wap .s-desc h2, .u-classify-wap .s-desc h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify-wap .s-desc h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.u-classify-wap .s-desc h3 {
    margin-top: 0.25em;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #fff;
    -webkit-text-stroke: 0.5px #fff;
}
.u-classify-wap .s-desc span {
    display: inline-block;
    width: 1em;
    height: 1px;
    overflow: hidden;
    background: #fff;
    margin: 0.5em 0;
}
.u-classify-wap .s-classify {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em;
}
.u-classify-wap .s-classify .s-main {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.u-classify-wap .s-classify .s-main .s-crumbs, .u-classify-wap .s-classify .s-main .s-nav {
    width: 100%;
    height: auto;
    overflow: hidden;
    overflow-x: auto;
}
.u-classify-wap .s-classify .s-main .s-crumbs {
    box-sizing: border-box;
    padding-top: 0.5em;
    font-size: 1.2rem;
    font-weight: lighter;
    color: #999;
    letter-spacing: 1px;
    line-height: 2.57142857;
}
.u-classify-wap .s-classify .s-main .s-crumbs i, .u-classify-wap .s-classify .s-main .s-crumbs a, .u-classify-wap .s-classify .s-main .s-crumbs small {
    display: inline-block;
    vertical-align: middle;
    color: #999;
}
.u-classify-wap .s-classify .s-main .s-crumbs i {
    width: 1em;
    height: 1em;
    overflow: hidden;
    background: url(../images/home.png) center center no-repeat;
    background-size: 100% 100%;
}
.u-classify-wap .s-classify .s-main .s-nav ul {
    width: max-content;
    height: auto;
    overflow: hidden;
}
.u-classify-wap .s-classify .s-main .s-nav li {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 8em;
    height: 3.33333333em;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 1;
    color: #666;
    text-align: center;
    float: left;
}
.u-classify-wap .s-classify .s-main .s-nav li img {
    vertical-align: middle;
    margin-right: 0.4rem;
    height: 1.2em;
}
.u-classify-wap .s-classify .s-main .sub-nav {
	width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px 0;
}
.u-classify-wap .s-classify .s-main .sub-nav .nav-item {
	display: none;
	width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify-wap .s-classify .s-main .sub-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.u-classify-wap .s-classify .s-main .sub-nav li {
    position: relative;
    display: inline-block;
    align-items: center;
    width: 48%;
    height: auto;
    overflow: hidden;
    margin: 5px 0;
    background: #fff;
    font-size: 1.4rem;
    line-height: 3;
    color: #666;
    text-align: center;
    float: left;
}
.u-classify-wap .s-classify .s-main .sub-nav li a {
	display: block;
	width: 100%;
    height: auto;
    overflow: hidden;
	color: inherit;
}
.u-classify-wap .s-classify .s-main .s-nav li.on, .u-classify-wap .s-classify .s-main .s-nav li:hover {
    color: #333;
    font-weight: bold;
}
.u-classify-wap .s-classify .s-main .s-nav li.on:after, .u-classify-wap .s-classify .s-main .s-nav li:hover:after {
    background: #29316c;
}
.u-classify-wap .s-classify .s-main .s-nav li:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: transparent;
}
.u-classify-wap .s-classify .s-main .s-nav li:last-child a {
    border-right-color: transparent;
}
.u-classify-wap .s-classify .s-main .s-nav li a {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-right: 1px solid #999;
    color: inherit;
}
/*contact*/
.g-contact {
    height: auto;
    overflow: hidden;
}
.g-contact .m-t, .g-contact .m-c, .g-contact .m-f {
    height: auto;
}
.g-contact .s-t, .g-contact .s-c {
    height: auto;
}
.g-contact .y-t, .g-contact .y-c {
    height: auto;
    overflow: hidden;
}
.g-contact .y-t, .g-contact .y-c .info {
    font-size: 1.6rem;
    box-sizing: border-box;
    padding-top: 1em;
}
.g-contact .s-t {
    box-sizing: border-box;
    padding-top: 2em;
}
.g-contact .s-t h3, .g-contact .s-t aside {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    font-weight: normal;
    text-overflow: ellipsis;
    text-align: center;
}
.g-contact .s-t h3 {
    font-size: 3.6rem;
    color: #333;
}
.g-contact .s-t aside {
    font-size: 1.8rem;
    color: #999;
}
.g-contact .m-t .s-c .y-t {
    box-sizing: border-box;
    padding: 2em 0;
}
.g-contact .m-t .s-c ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-content: stretch;
}
.g-contact .m-t .s-c li {
    width: 30%;
    height: auto;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    padding: 2.5em;
}
.g-contact .m-t .s-c li img {
    /* display: block; */
    /* width: auto; */
    /* height: 2.75em; */
    /* margin: 0 auto; */
    /* margin-bottom: 0.5em; */
}
.g-contact .m-t .s-c li h3, .g-contact .m-t .s-c li h2, .g-contact .m-t .s-c li p {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.g-contact .m-t .s-c li h3 {
    margin-bottom: 0.5em;
    font-size: 2rem;
    color: #333;
}
.g-contact .m-t .s-c li h2 {
    margin-bottom: 0.125em;
    font-size: 2.4rem;
    color: #c2282a;
}
.g-contact .m-t .s-c li p {
    font-size: 1.6rem;
    color: #333;
}
.g-contact .m-t .s-c .y-c .s-map {
    width: 100%;
    height: 25em;
    overflow: hidden;
    background: #000;
}
.g-contact .m-c .s-c {
    margin-top: 0.5em;
}
.g-contact .m-c .s-c ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.g-contact .m-c .s-c li {
    width: 48%;
    height: auto;
    overflow: hidden;
    background: #fff;
    margin: 1.25em 0;
    box-sizing: border-box;
    padding: 1.5em;
    transition: all ease-out 0.3s;
}
.g-contact .m-c .s-c li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.g-contact .m-c .s-c li:hover p {
    color: #e60039;
}
.g-contact .m-c .s-c li h3, .g-contact .m-c .s-c li aside, .g-contact .m-c .s-c li p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.g-contact .m-c .s-c li h3 {
    font-size: 2.4rem;
    color: #333;
    text-align: left;
}
.g-contact .m-c .s-c li aside {
    margin-top: 0.5em;
    /* text-align: left; */
}
.g-contact .m-c .s-c li p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
}
.g-contact .m-c .s-c li p img, .g-contact .m-c .s-c li p span {
    vertical-align: middle;
}
.g-contact .m-c .s-c li p img {
    height: 1.25em;
    margin-right: 0.75em;
}
.g-contact .m-f .s-c {
    margin-top: 2em;
}
.g-contact .m-f .s-c img {
    width: 100%;
}
.pagination {
    display: flex;
    justify-content: center;
}
.pagination a {
    display: inline-block  !important;
    width: 3em;
    height: auto !important;
    overflow: hidden;
    background: none  !important;
    margin: 0 1em;
    box-sizing: border-box;
    border: 1px solid #2e3770 !important;
    border-radius: 5px;
    font-size: 1.4rem !important;
    line-height: 2.5 !important;
    color: #333 !important;
    text-align: center;
    transition: all ease-out 0.3s;
}
.pagination a.cur, .pagination a:hover {
    background: #070f4a !important;
    color: #fff !important;
}
.pagination p {
    display: none;
}
.pagination a[title='首页'], .pagination a[title='上一页'], .pagination a[title='尾页'], .pagination a[title='下一页'] {
    display: none !important;
}
/*profile*/
.i-profile {
    height: auto;
    overflow: hidden;
}
.i-profile .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-profile .s-row:first-child {
    box-sizing: border-box;
    padding: 2em 0;
}
.i-profile .s-row:first-child h3 {
    margin-bottom: 1em;
}
.i-profile .s-row:last-child {
    box-sizing: border-box;
    border-top: 1px solid #b5b5b5;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.i-profile .s-row:last-child h3 {
    margin-top: 1em;
}
.i-profile .s-row h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-weight: normal;
}
.i-profile .s-row h3 big {
    font-size: 4.8rem;
    color: #333;
}
.i-profile .s-row h3 small {
    margin-left: 1em;
    font-size: 2.4rem;
    color: #999;
}
.i-profile .s-row h5 {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 1em;
    font-size: 2rem;
    font-weight: normal;
    color: #303672;
}
.i-profile .s-row p {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0.5em 0;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #666;
}
.i-profile .s-row p img {
    display: block;
    width: 100%;
}
.i-profile .s-row .s-info, .i-profile .s-row .s-pic {
    width: 50%;
    height: auto;
    overflow: hidden;
}
.i-profile .s-row .s-info {
    box-sizing: border-box;
    padding-right: 5em;
}
.i-profile .s-row .s-pic img {
    display: block;
    width: 100%;
}
/*advantage*/
.i-advantage {
    height: auto;
    overflow: hidden;
}
.i-advantage ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-advantage li {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 4em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.i-advantage li:nth-child(2n) {
    flex-direction: row-reverse;
}
.i-advantage li .s-info, .i-advantage li .s-pic {
    width: 50%;
    height: auto;
    overflow: hidden;
}
.i-advantage li .s-info {
    box-sizing: border-box;
    padding: 0 4em;
}
.i-advantage li .s-info aside, .i-advantage li .s-info h3, .i-advantage li .s-info p {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.i-advantage li .s-info aside {
    font-size: 5.6rem;
    font-weight: bold;
    color: #dedede;
    text-transform: uppercase;
}
.i-advantage li .s-info h3 {
    font-size: 3.6rem;
    font-weight: normal;
    color: #2f3873;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.i-advantage li .s-info em {
    font-style: normal;
}
.i-advantage li .s-info p {
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
}
.i-advantage li .s-info span {
    display: block;
    width: 3em;
    height: 4px;
    overflow: hidden;
    background: #dedede;
    margin: 2.4em 0;
}
.i-advantage li .s-pic img {
    display: block;
    width: 100%;
}
@keyframes about-history-text {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.a-history {
    height: 945px;
    overflow: hidden;
    background: url(../images/about-history-bg.png) center 0 no-repeat;
    background-size: auto 100%;
    box-sizing: border-box;
    padding-top: 44px;
}
.a-history .m-t, .a-history .m-c {
    height: auto;
    overflow: hidden;
}
.a-history .m-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-weight: normal;
}
.a-history .m-t h3 big {
    font-size: 4.8rem;
    color: #333;
}
.a-history .m-t h3 small {
    margin-left: 1em;
    font-size: 2.4rem;
    color: #999;
}
.a-history .m-c {
    text-align: center;
}
.a-history .m-c .s-check {
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.a-history .m-c .s-check ul {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.a-history .m-c .s-check li {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 65px;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.a-history .m-c .s-check li .text-1 {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-bottom: 55px;
    background-size: 100% 100%;
    font-size: 32px;
    line-height: 1;
}
.a-history .m-c .s-check li .text-1 span {
    display: inline-block;
    padding: 0 2px;
}
.a-history .m-c .s-check li.on p {
    animation: about-history-text 0.75s ease-out 0s normal;
    animation-fill-mode: both;
}
.a-history .m-c .s-check li.on .text-1 span {
    animation: about-history-text 0.75s ease-out 0s normal;
    animation-fill-mode: both;
}
.a-history .m-c .s-check li p {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 22px;
    line-height: 1.45454545;
    color: #999;
    text-align: center;
}
.a-history .m-c .s-check li a {
    color: inherit;
}
.a-history .m-c .s-check li.on {
    visibility: visible;
    opacity: 1;
}
.a-history .m-c .s-history {
    position: relative;
    width: 100%;
    height: 130px;
    overflow: hidden;
}
.a-history .m-c .s-history .s-line {
    position: absolute;
    z-index: 0;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: #7d7d7d;
}
.a-history .m-c .s-history .s-main {
    position: relative;
    width: 1200px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.a-history .m-c .s-history .prev, .a-history .m-c .s-history .next {
    position: absolute;
    z-index: 3;
    top: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all ease-out 0.3s;
}
.a-history .m-c .s-history .prev {
    left: 0;
    background-image: url(../images/about-history-left.png);
}
.a-history .m-c .s-history .prev:hover {
    background-image: url(../images/about-history-left-black.png);
}
.a-history .m-c .s-history .next {
    right: 0;
    background-image: url(../images/about-history-right.png);
}
.a-history .m-c .s-history .next:hover {
    background-image: url(../images/about-history-right-black.png);
}
.a-history .m-c .s-history ul {
    width: 1100px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.a-history .m-c .s-history ul li {
    position: relative;
    width: 220px;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding-top: 24px;
    text-align: center;
}
.a-history .m-c .s-history ul li:first-child:before {
    opacity: 0;
}
.a-history .m-c .s-history ul li:last-child:before {
    opacity: 0;
}
.a-history .m-c .s-history ul li:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 30px;
    width: 0;
    height: 2px;
    overflow: hidden;
    background: #29316c;
}
.a-history .m-c .s-history ul li.left:before {
    right: 50%;
}
.a-history .m-c .s-history ul li.right:before {
    left: 50%;
}
.a-history .m-c .s-history ul li.on em, .a-history .m-c .s-history ul li:hover em {
    background-color: #29316c;
}
.a-history .m-c .s-history ul li.on:before {
    animation: about-line 2s ease-out 0s normal;
    animation-fill-mode: both;
}
.a-history .m-c .s-history ul li.on span, .a-history .m-c .s-history ul li:hover span {
    color: #29316c;
}
.a-history .m-c .s-history ul li em {
    position: relative;
    z-index: 3;
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    background: #b7b7b7;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 50%;
    transition: all ease-out 0.3s;
}
.a-history .m-c .s-history ul li span {
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    margin-top: 22px;
    font-size: 24px;
    color: #999;
    transition: all ease-out 0.3s;
}
.a-history .m-c .text-2 {
    display: inline-block;
    width: 354px;
    height: 32px;
    overflow: hidden;
    background: url(../images/about-history-text-2.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.a-history .m-c .s-year {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: -100px;
}
.a-history .m-c .s-year ul {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.a-history .m-c .s-year li {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 300px;
    font-weight: bold;
    line-height: 1;
    color: #999;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.a-history .m-c .s-year li.on {
    visibility: visible;
    opacity: 0.08;
}
.b-history {
    height: 16.5em;
    overflow: hidden;
    background: url(../images/about-history-bg.png) center 0 no-repeat;
    background-size: auto 100%;
    box-sizing: border-box;
    padding-top: 1em;
}
.b-history .m-t, .b-history .m-c {
    height: auto;
    overflow: hidden;
}
.b-history .m-t {
    text-align: center;
}
.b-history .m-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-weight: normal;
}
.b-history .m-t h3 big {
    font-size: 4.8rem;
    color: #333;
}
.b-history .m-t h3 small {
    margin-left: 1em;
    font-size: 2.4rem;
    color: #999;
}
.b-history .m-c {
    text-align: center;
}
.b-history .m-c .s-check {
    width: 100%;
    height: 6.5em;
    overflow: hidden;
}
.b-history .m-c .s-check ul {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.b-history .m-c .s-check li {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 1em;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.b-history .m-c .s-check li .text-1 {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-bottom: 1.5em;
    background-size: 100% 100%;
    font-size: 2rem;
    line-height: 1;
}
.b-history .m-c .s-check li .text-1 span {
    display: inline-block;
    padding: 0 2px;
}
.b-history .m-c .s-check li.on p {
    animation: about-history-text 0.75s ease-out 0s normal;
    animation-fill-mode: both;
}
.b-history .m-c .s-check li.on .text-1 span {
    animation: about-history-text 0.75s ease-out 0s normal;
    animation-fill-mode: both;
}
.b-history .m-c .s-check li p {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #999;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.b-history .m-c .s-check li a {
    color: inherit;
}
.b-history .m-c .s-check li.on {
    visibility: visible;
    opacity: 1;
}
.b-history .m-c .s-history {
    position: relative;
    width: 100%;
    height: 2.5em;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1em;
}
.b-history .m-c .s-history .s-line {
    position: absolute;
    z-index: 0;
    top: 0.6em;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: #7d7d7d;
}
.b-history .m-c .s-history .s-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.b-history .m-c .s-history .prev, .b-history .m-c .s-history .next {
    position: absolute;
    z-index: 3;
    top: 0;
    width: 1.25em;
    height: 1.25em;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
.b-history .m-c .s-history .prev {
    left: 0;
    background-image: url(../images/about-history-left-black.png);
}
.b-history .m-c .s-history .next {
    right: 0;
    background-image: url(../images/about-history-right-black.png);
}
.b-history .m-c .s-history ul {
    width: 14.75em;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.b-history .m-c .s-history ul li {
    position: relative;
    width: 2.95em;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding-top: 0.4em;
    text-align: center;
}
.b-history .m-c .s-history ul li:first-child:before {
    opacity: 0;
}
.b-history .m-c .s-history ul li:last-child:before {
    opacity: 0;
}
.b-history .m-c .s-history ul li:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0.6em;
    width: 0;
    height: 1px;
    overflow: hidden;
    background: #29316c;
}
.b-history .m-c .s-history ul li.left:before {
    right: 50%;
}
.b-history .m-c .s-history ul li.right:before {
    left: 50%;
}
.b-history .m-c .s-history ul li.on em, .b-history .m-c .s-history ul li:hover em {
    background-color: #29316c;
}
.b-history .m-c .s-history ul li.on:before {
    animation: about-line 2s ease-out 0s normal;
    animation-fill-mode: both;
}
.b-history .m-c .s-history ul li.on span, .b-history .m-c .s-history ul li:hover span {
    color: #29316c;
}
.b-history .m-c .s-history ul li em {
    position: relative;
    z-index: 3;
    display: block;
    width: 0.4em;
    height: 0.4em;
    overflow: hidden;
    background: #b7b7b7;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 50%;
    transition: all ease-out 0.3s;
}
.b-history .m-c .s-history ul li span {
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    margin-top: 0.25em;
    font-size: 1.2rem;
    color: #999;
    transition: all ease-out 0.3s;
}
.b-history .m-c .text-2 {
    display: inline-block;
    width: 11em;
    height: 2em;
    overflow: hidden;
    background: url(../images/about-history-text-2.png) 0 0 no-repeat;
    background-size: 100% auto;
}
.b-history .m-c .s-year {
    width: 100%;
    height: 5em;
    overflow: hidden;
    margin-top: -3.5em;
}
.b-history .m-c .s-year ul {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.b-history .m-c .s-year li {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 10rem;
    font-weight: bold;
    line-height: 1;
    color: #999;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.b-history .m-c .s-year li.on {
    visibility: visible;
    opacity: 0.08;
}
.a-culture {
    height: 920px;
    overflow: hidden;
    background: url(../images/about-culture-bg.png) center 0 no-repeat;
    background-size: auto 100%;
    box-sizing: border-box;
    padding-top: 60px;
}
.a-culture .m-t, .a-culture .m-c {
    height: auto;
    overflow: hidden;
}
.a-culture .m-t h3 {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-weight: normal;
}
.a-culture .m-t h3 big {
    font-size: 4.8rem;
    color: #333;
}
.a-culture .m-t h3 small {
    margin-left: 1em;
    font-size: 2.4rem;
    color: #999;
}
.a-culture .m-c ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.a-culture .m-c li {
    position: relative;
    width: 30%;
    height: 14em;
    overflow: hidden;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-bottom: 2px solid #999;
    padding-top: 4em;
}
.a-culture .m-c li:hover {
    border-bottom-color: #29316c;
}
.a-culture .m-c li:hover:before {
    visibility: visible;
    opacity: 1;
}
.a-culture .m-c li:hover h3 {
    color: #29316c;
}
.a-culture .m-c li:hover h3:before {
    background-color: #29316c;
}
.a-culture .m-c li:before {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-right: 50px;
    font-size: 160px;
    color: #e1e1e1;
    line-height: 280px;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.3s;
}
.a-culture .m-c li:nth-child(1):before {
    content: '01';
}
.a-culture .m-c li:nth-child(1) h3:before {
    background-image: url(../images/about-culture-icon1.png);
}
.a-culture .m-c li:nth-child(1):hover h3:before {
    background-image: url(../images/about-culture-icon1-white.png);
}
.a-culture .m-c li:nth-child(2):before {
    content: '02';
}
.a-culture .m-c li:nth-child(2) h3:before {
    background-image: url(../images/about-culture-icon2.png);
}
.a-culture .m-c li:nth-child(2):hover h3:before {
    background-image: url(../images/about-culture-icon2-white.png);
}
.a-culture .m-c li:nth-child(3):before {
    content: '03';
}
.a-culture .m-c li:nth-child(3) h3:before {
    background-image: url(../images/about-culture-icon3.png);
}
.a-culture .m-c li:nth-child(3):hover h3:before {
    background-image: url(../images/about-culture-icon3-white.png);
}
.a-culture .m-c li:nth-child(4):before {
    content: '04';
}
.a-culture .m-c li:nth-child(4) h3:before {
    background-image: url(../images/about-culture-icon4.png);
}
.a-culture .m-c li:nth-child(4):hover h3:before {
    background-image: url(../images/about-culture-icon4-white.png);
}
.a-culture .m-c li:nth-child(5):before {
    content: '05';
}
.a-culture .m-c li:nth-child(5) h3:before {
    background-image: url(../images/about-culture-icon5.png);
}
.a-culture .m-c li:nth-child(5):hover h3:before {
    background-image: url(../images/about-culture-icon5-white.png);
}
.a-culture .m-c li:nth-child(6):before {
    content: '06';
}
.a-culture .m-c li:nth-child(6) h3:before {
    background-image: url(../images/about-culture-icon6.png);
}
.a-culture .m-c li:nth-child(6):hover h3:before {
    background-image: url(../images/about-culture-icon6-white.png);
}
.a-culture .m-c li h3 {
    position: relative;
    z-index: 1;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-left: 80px;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 2.5;
    color: #333;
    transition: all ease-out 0.3s;
}
.a-culture .m-c li h3:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background-color: #eae9e9;
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: center center;
    box-sizing: border-box;
    border-radius: 50%;
    transition: all ease-out 0.3s;
}
.a-culture .m-c li p {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 2em;
    box-sizing: border-box;
    padding-left: 80px;
    font-size: 18px;
    color: #666;
}
.a-culture .m-c li a {
    color: inherit;
}
/*统一内页*/
.m_nei {
    width: 100%;
    margin: 0 auto;
    background: #f5f5f5;
    box-sizing: border-box;
    padding-top: 2.5em;
    overflow: hidden;
}
.m_nei_c1 {
    margin: 0 auto;
    padding: 1.5em 0;
}
.m_nei_t {
    font-size: 16px;
    color: #606060;
    line-height: 50px;
}
.m_nei_t a {
    color: #606060;
}
.m_nei_c1 h1 {
    font-size: 24px;
    color: #333;
    width: 100%;
    line-height: 80px;
    border-bottom: 1px solid #333;
}
.nei_con {
    font-size: 14px;
    color: #4b4b4b;
    margin: 20px 0;
    line-height: 30px;
}
.nei_con img {
    width: auto;
    max-width: 100%;
    margin: 10px 0;
    height: auto!important;
}
.nsx {
    width: 100%;
    border-bottom: 1px solid #333;
    margin: 50px 0;
    padding-bottom: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}
.nsx a {
    display: block;
    width: 170px;
    height: 53px;
    background: #e1e1e1;
    border-radius: 5px;
    font-size: 18px;
    color: #2e2e2e;
    line-height: 53px;
    text-align: center;
}
.nsx a:hover {
    background: #29316c;
    color: #fff;
}
.n_list {
    width: 1200px;
    overflow: hidden;
    margin: 0 auto 50px;
}
.n_list ul {
    display: flex;
    justify-content: space-around;
}
.n_list ul li {
    width: 40%;
    overflow: hidden;
}
.n_list ul li img {
    width: 100%;
    transition: all 2s;
}
.n_list ul li:hover img {
    transform: scale(1.1)
}
.n_list ul li span {
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.n_list ul li h1 {
    font-size: 20px;
    color: #606060;
    line-height: 50px;
    font-weight: normal;
}
.n_list ul li:hover h1 {
    color: #29316c
}
.g-top {
    position: fixed;
    z-index: 10;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: auto;
    overflow: hidden;
}
.g-top.on .s-top {
    transform: translateY(0);
}
.g-top .s-top {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translateY(100%);
    transition: all ease-out 0.3s;
}
.g-top .s-top:hover {
    opacity: 0.8;
}
.g-top .s-top img {
    display: block;
    width: 100%;
}
/****************************************新闻资讯-列表****************************************/

.n-news {

    height: auto;

    overflow: hidden;

    box-sizing: border-box;

    padding: 40px 0;

}

.n-news .s-list, .n-news .s-page {

    width: 100%;

    height: auto;

}

.n-news .s-list ul {

    width: 100%;

    height: auto;

}

.n-news .s-list li {

    display: flex;

    justify-content: space-between;

    width: 100%;

    height: 170px;

    overflow: hidden;

    margin: 20px 0;

    box-sizing: border-box;

    border-radius: 10px;

}

.n-news .s-list li:hover {

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);

}

.n-news .s-list li:hover .s-info {

    transform: translateX(0);

}

.n-news .s-list li .s-info, .n-news .s-list li .s-date {

    height: 100%;

    overflow: hidden;

}

.n-news .s-list li .s-info {

    display: flex;

    width: 1000px;

    transform: translateX(-280px);

    transition: all ease-out 0.3s;

}

.n-news .s-list li .s-info .s-pic, .n-news .s-list li .s-info .s-txt {

    height: 100%;

    overflow: hidden;

}

.n-news .s-list li .s-info .s-pic {

    width: 280px;

}

.n-news .s-list li .s-info .s-pic img {

    display: block;

    width: 100%;

    height: auto;

    min-height: 100%;

}

.n-news .s-list li .s-info .s-txt {

    display: flex;

    flex-direction: column;

    justify-content: center;

    width: 720px;

    box-sizing: border-box;

    padding: 40px 50px;

}

.n-news .s-list li .s-info .s-txt h3 {

    width: 100%;

    height: auto;

    font-size: 24px;

    color: #333;

    white-space: nowrap;

    text-overflow: ellipsis;

    overflow: hidden;

}

.n-news .s-list li .s-info .s-txt p {

    width: 100%;

    height: auto;

    overflow: hidden;

    margin-top: 12px;

    font-size: 14px;

    color: #666;

    line-height: 1.75;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

}

.n-news .s-list li .s-info .s-txt a {

    color: inherit;

}

.n-news .s-list li .s-date {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-end;

    width: 200px;

    box-sizing: border-box;

    padding: 50px;

}

.n-news .s-list li .s-date p {

    width: 100%;

    height: auto;

    font-size: 16px;

    color: #333;

    white-space: nowrap;

    text-overflow: ellipsis;

    overflow: hidden;

    text-align: right;

}

.n-news .s-list li .s-date .more {

    display: block;

    width: 14px;

    height: 15px;

    overflow: hidden;

    margin-top: 30px;

    background: url(../images/news-list-right.png) 0 0 no-repeat;

}

.n-news .s-page {

    text-align: center;

}

.n-news .s-page a {

    display: inline-block;

    width: 20px;

    height: auto;

    overflow: hidden;

    margin: 0 5px;

    font-size: 18px;

    color: #333;

    vertical-align: middle;

    transition: all ease-out 0.3s;

}

.n-news .s-page a.on, .n-news .s-page a:hover {

    font-size: 24px;

    color: #86c12b;

}
@media screen and (max-width: 991px) {
    body {
        padding-bottom: 2.75em;
    }
    .m-wrap {
        box-sizing: border-box;
        padding: 0 0.75em;
    }
    .m-box {
        width: 100%;
    }
    .s-pc {
        display: none !important;
    }
    .s-wap {
        display: block;
    }
    /*header*/
    .g-header {
        position: fixed;
        z-index: 99;
        height: 2.5em;
        background: #f6f6f6;
        box-sizing: border-box;
        border-bottom: 1px solid #ccc;
    }
    .g-header .m-box {
        height: 100%;
    }
    .g-header .s-logo {
        padding: 0.5em 0;
        text-align: center;
    }
    .g-header .s-logo img {
        height: 1.5em;
    }
    .g-header .f-l.s-wap {
        display: flex;
        height: 100%;
        align-items: center;
    }
    .g-header .f-r.s-wap {
        display: flex;
        height: 100%;
        align-items: center;
    }
    /*nav*/
    .g-nav {
        position: fixed;
        z-index: 90;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        overflow-y: auto;
        background: #f6f6f6;
        box-sizing: border-box;
        padding: 2.5em 0 0;
        transform: translateX(-100%);
        transition: all ease-out 0.3s;
    }
    .g-nav.on {
        transform: translateX(0);
    }
    /*banner*/
    .g-banner .s-banner.s-wap .hd {
        padding: 0.25em 0;
    }
    .g-banner .s-banner.s-wap .hd li {
        width: 0.75em;
        height: 0.75em;
        background-size: contain;
        margin: 0 0.25em;
    }
    /*recommend*/
    .g-recommend {
        box-sizing: border-box;
        padding-top: 0.75em;
    }
    .g-recommend .m-t h3 {
        font-size: 1.6rem;
    }
    .g-recommend .m-c .s-recommend.s-wap .bd .s-info h3 {
        font-size: 1.8rem;
    }
    .g-recommend .m-c .s-recommend.s-wap .hd {
        padding: 0.25em 0;
    }
    .g-recommend .m-c .s-recommend.s-wap .hd li {
        width: 0.75em;
        height: 0.75em;
        background-size: contain;
        margin: 0 0.25em;
    }
    /*general*/
    .u-title {
        padding-top: 1em;
    }
    .u-title h3 {
        font-size: 2.8rem;
    }
    .u-title p {
        font-size: 1.4rem;
    }
    .u-title a {
        color: inherit;
    }
    .u-title .s-more {
        width: 10em;
        margin: 0.75em auto;
        font-size: 1.2rem;
    }
    .u-title .s-more img {
        height: 1em;
    }
    /*trait*/
    .g-trait {
        padding: 0;
    }
    .g-trait .m-t {
        box-sizing: border-box;
        padding: 1em 0.75em;
    }
    .g-trait .m-c {
        background: url("../images/trait-bg.png") center center no-repeat;
        background-size: cover;
        padding: 1em 0;
    }
    .g-trait .m-c .s-bg {
        display: none;
    }
    .g-trait .m-c .m-box {
        box-sizing: border-box;
        padding: 0 0.75em;
    }
    .g-trait .m-c ul {
        flex-wrap: wrap;
    }
    .g-trait .m-c li {
        width: 48%;
        margin: 0.375em 0;
    }
    .g-trait .m-c li .s-aside h3 {
        font-size: 1.6rem;
    }
    .g-trait .m-c li .s-aside aside {
        width: 40%;
        height: 2em;
    }
    .g-trait .m-c li .s-main .s-info h3 {
        font-size: 1.8rem;
    }
    .g-trait .m-c li .s-main .s-info p {
        font-size: 1.2rem;
    }
    .g-trait .m-c li .s-main .s-pic {
        margin-top: 0.5em;
    }
    /*advantage*/
    .g-advantage .m-c ul {
        flex-wrap: wrap;
    }
    .g-advantage .m-c li {
        width: 48%;
        padding: 0.5em;
        margin-bottom: 0.75em;
    }
    .g-advantage .m-c li span {
        width: 4.5em;
        height: 4.5em;
    }
    .g-advantage .m-c li h3 {
        font-size: 1.4rem;
    }
    .g-advantage .m-c li p {
        font-size: 1.2rem;
    }
    /*about*/
    .g-about .m-box {
        flex-direction: column;
        box-sizing: border-box;
        padding: 1em 0;
    }
    .g-about .s-info {
        width: 100%;
    }
    .g-about .s-info .s-t h3, .g-about .s-info .s-t p {
        text-align: center;
    }
    .g-about .s-info .s-t p {
        font-size: 2.4rem;
    }
    .g-about .s-info .s-t span {
        margin: 0 auto;
    }
    .g-about .s-info .s-c .s-desc .s-more {
        display: none;
    }
    .g-about .s-info .s-c .s-item .s-col h3 {
        font-size: 2.8rem;
    }
    .g-about .s-info .s-c .s-item .s-col h3 small {
        font-size: 1.4rem;
    }
    .g-about .s-info .s-c .s-item .s-col p {
        font-size: 1.4rem;
    }
    .g-about .s-pic {
        width: 90%;
        margin-top: 0.75em;
    }
    /*general*/
    .u-bar {
        line-height: 2em;
    }
    .u-bar h3 {
        font-size: 1.6rem;
    }
    .u-bar li {
        font-size: 1.4rem;
        margin: 0 0.5em;
    }
    /*honor*/
    .g-honor {
        padding-top: 1em;
    }
    .g-honor .m-c {
        margin-top: 1em;
    }
    /*application*/
    .g-application {
        padding: 0;
    }
    .g-application .m-t {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .g-application .m-c .bd li .s-cover {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .g-application .m-c .bd li .s-cover h3 {
        font-size: 2.4rem;
    }
    .g-application .m-c .bd li .s-cover p {
        font-size: 1.2rem;
    }
    .g-application .m-c .bd li .s-cover a {
        color: inherit;
    }
    .g-application .m-c .bd li .s-cover .s-more {
        width: 10em;
        font-size: 1.2rem;
        margin: 0.5em 0;
        line-height: 2;
    }
    .g-application .m-c .bd li .s-cover .s-more img {
        height: 0.75em;
    }
    .g-application .m-c .hd {
        height: 3.5em;
        margin: -1.735em auto 0;
    }
    .g-application .m-c .hd ul {
        width: 10em;
        overflow-x: auto;
    }
    .g-application .m-c .hd ul li {
        width: 5em;
        padding: 0.75em 0;
    }
    .g-application .m-c .hd ul li .s-main {
        padding: 0 0.5em;
    }
    .g-application .m-c .hd ul li .s-main span {
        height: 1.2em;
    }
    .g-application .m-c .hd ul li .s-main p {
        font-size: 1.2rem;
    }
    /*news*/
    .g-news .m-c {
        padding-top: 0.5em;
    }
    /*partner*/
    .g-partner {
        padding: 0;
    }
    .g-partner .m-t {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .g-partner .m-c ul {
        flex-wrap: wrap;
    }
    .g-partner .m-c li {
        width: 50%;
    }
    .g-partner .m-c li:nth-child(6) ~ li {
        display: none;
    }
    .g-partner .m-c li .s-cover {
        visibility: visible;
        opacity: 1;
    }
    .g-partner .m-c li .s-cover h3 {
        font-size: 1.8rem;
    }
    /*footer*/
    .g-footer {
        padding-bottom: 1.5em;
    }
    .g-footer .s-info {
        width: 100%;
        box-sizing: border-box;
        padding: 0.5em 0;
    }
    .g-footer .s-info .s-t .s-contact .s-row p {
        font-size: 1.2rem;
    }
    .g-footer .s-info .s-t .s-contact .s-row h3 {
        font-size: 1.6rem;
    }
    .g-footer .s-info .s-t .s-qrcode .s-col .s-info p {
        white-space: nowrap;
        font-size: 1.2rem;
    }
    /*copyright*/
    .g-copyright p {
        font-size: 1.2rem;
    }
    /*menubar*/
    .g-menubar {
        padding: 0;
    }
    .i-product .m-t .s-product {
        width: 100%;
    }
    .i-product .m-t .s-product ul {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-product .m-t .s-product li .s-info h3 {
        font-size: 1.4rem;
    }
    .i-product .m-t .s-product li .s-info h3 img {
        height: 0.5em;
        transform: translateY(0);
    }
    .i-case {
        margin-top: 0;
    }
    .i-case .m-t .s-product ul {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-case .m-t .s-product li .s-info h3 {
        font-size: 1.4rem;
    }
    .i-pic {
        margin-top: 0;
    }
    .i-pic .m-t .s-product ul {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-pic .m-t .s-product li .s-info h3 {
        font-size: 1.4rem;
    }
    .g-contact .s-t {
        padding: 1em;
    }
    .g-contact .s-t h3 {
        font-size: 2.4rem;
    }
    .g-contact .s-t aside {
        font-size: 1.4rem;
    }
    .g-contact .m-t .s-c ul {
        flex-wrap: wrap;
    }
    .g-contact .m-t .s-c li {
        width: 100%;
        margin-bottom: 0.5em;
        padding: 1.5em;
    }
    .g-contact .m-t .s-c li img {
        height: 1.5em;
    }
    .g-contact .m-t .s-c li h3 {
        font-size: 1.6rem;
    }
    .g-contact .m-t .s-c li h2 {
        font-size: 2rem;
    }
    .g-contact .m-t .s-c li p {
        font-size: 1.4rem;
    }
    .g-contact .m-t .s-c .y-t {
        padding: 1em 0;
    }
    .g-contact .m-t .s-c .y-c .s-map {
        height: 10em;
    }
    .g-contact .m-c .s-c li {
        width: 100%;
        margin: 0.5em 0;
        padding: 1.5em;
    }
    .g-contact .m-f .s-c {
        margin-top: 1em;
    }
    .g-contact .m-c .s-c li h3 {
        font-size: 2rem;
    }
    .g-contact .m-c .s-c li p {
        font-size: 1.4rem;
    }
    .i-profile {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-profile .s-row:first-child {
        padding: 1em 0;
    }
    .i-profile .s-row h3 {
        text-align: center;
    }
    .i-profile .s-row h3 big {
        font-size: 2.8rem;
    }
    .i-profile .s-row h3 small {
        font-size: 1.4rem;
    }
    .i-profile .s-row p {
        font-size: 1.4rem;
    }
    .i-profile .s-row .s-info, .i-profile .s-row .s-pic {
        width: 100%;
    }
    .i-profile .s-row .s-info {
        padding-right: 0;
    }
    .i-advantage {
        box-sizing: border-box;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-advantage li {
        margin: 0.5em 0;
    }
    .i-advantage li .s-info, .i-advantage li .s-pic {
        width: 48.5%;
    }
    .i-advantage li .s-info {
        padding: 0;
    }
    .i-advantage li .s-info aside {
        font-size: 3.2rem;
    }
    .i-advantage li .s-info h3 {
        font-size: 2rem;
    }
    .i-advantage li .s-info p {
        font-size: 1.4rem;
    }
    .i-advantage li .s-info span {
        margin: 0.5em 0;
    }
    .b-history {
        padding-top: 1em;
    }
    .b-history .m-t h3 {
        text-align: center;
    }
    .b-history .m-t h3 big {
        font-size: 2.8rem;
    }
    .b-history .m-t h3 small {
        font-size: 1.4rem;
    }
    .a-culture {
        padding-top: 1em;
    }
    .a-culture .m-t h3 {
        text-align: center;
    }
    .a-culture .m-t h3 big {
        font-size: 2.8rem;
    }
    .a-culture .m-t h3 small {
        font-size: 1.4rem;
    }
    .a-culture .m-c li {
        width: 100%;
        height: 8em;
        padding-top: 1em;
    }
    .a-culture .m-c li h3 {
        padding-left: 3em;
        font-size: 1.8rem;
    }
    .a-culture .m-c li h3:before {
        width: 2.5em;
        height: 2.5em;
        background-size: 40%;
    }
    .a-culture .m-c li p {
        margin-top: 1em;
        padding-left: 3.85em;
        font-size: 1.4rem;
    }
    .g-top {
        right: 0;
        bottom: 15%;
    }
    .g-about .s-info .s-c .s-item {
        justify-content: space-around;
    }
    .g-about .s-info .s-c .s-desc p {
        font-size: 14px;
    }
    .i-product .m-t .s-product li {
        width: 49%;
    }
    .n-news .s-list li {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    .n-news .s-list li .s-info {
        width: 100%;
        flex-wrap: wrap;
        transform: translateX(0);
    }
    .n-news .s-list li .s-info .s-pic {
        width: 100%;
        border-radius: 10px;
    }
    .n-news .s-list li .s-info .s-txt {
        width: 100%;
        padding: 20px 10px;
    }
    .n-news .s-list li .s-info .s-txt h3 {
        font-size: 18px;
    }
    .n-news .s-list li .s-date {
        width: 100%;
        padding: 0 10px;
    }
    .n-news .s-list li .s-date .more {
        display: none;
    }
    .m_nei {
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .i-case .m-t .s-product li {
        width: 48%;
    }
    .n_list {
        width: 100%;
        margin-bottom: 10px;
    }
    .n_list ul li {
        width: 46%;
    }
    .n_list ul li h1 {
        font-size: 16px;
    }
    .g-about .s-info a {
        margin-left: auto;
        margin-right: auto;
    }
    .i-pic .m-t .s-product li {
        width: 48%;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .m-box {
        width: 970px;
    }
    .g-header .s-logo {
        margin-top: 0.25em;
    }
    .g-header .s-logo img {
        height: 2.5em;
    }
    .g-header .f-l p {
        font-size: 1.8rem;
    }
    .g-header .f-r .s-contact span {
        font-size: 1.6rem;
    }
    .g-header .f-r .s-contact span big {
        font-size: 2.2rem;
    }
    .g-advantage .m-c li h3 {
        font-size: 2.2rem;
    }
    .g-news .m-c .s-news.s-pc li:hover .s-info {
        transform: translateY(3.5em);
    }
    .g-partner .m-c li .s-cover h3 {
        font-size: 3.2rem;
    }
    .g-footer .s-info .s-t .s-contact .s-row h3 {
        font-size: 2.4rem;
    }
}


/*下载列表页通用样式*/
/*download*/
.i-download {
  height: auto;
  overflow: hidden;
}
.i-download .m-box {
  display: flex;
  flex-wrap: wrap;
}
.i-download .s-col {
  width: 31.833333%;
  height: auto;
  overflow: hidden;
  margin: 0.8em 0;
  margin-left: 2.25%;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
}
.i-download .s-col:nth-child(3n+1) {
  margin-left: 0;
}
.i-download .s-col:nth-child(3n+1) .s-aside {
  background: url("../images/download-blue-bg.png") center center no-repeat;
  background-size: cover;
}
.i-download .s-col:nth-child(3n+2) .s-aside {
  background: url("../images/download-red-bg.png") center center no-repeat;
  background-size: cover;
}
.i-download .s-col:nth-child(3n) .s-aside {
  background: #333;
}
.i-download .s-col .s-aside,
.i-download .s-col .s-main {
  width: 100%;
}
.i-download .s-col .s-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 9.5em;
  overflow: hidden;
}
.i-download .s-col .s-aside img {
  display: block;
  width: auto;
  height: 4.5em;
  margin: 0 auto;
}
.i-download .s-col .s-aside h3 {
  width: 100%;
  height: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.25em;
  box-sizing: border-box;
  padding: 0 0.75em;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
}
.i-download .s-col .s-main {
  height: 17.25em;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0.25em 1.75em;
}
.i-download .s-col .s-main ul {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.i-download .s-col .s-main li {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(191, 191, 191, 0.6);
  font-size: 1.6rem;
  line-height: 3.75;
}
.i-download .s-col .s-main li:hover i {
  background-image: url("../images/download-red.png");
}
.i-download .s-col .s-main li:hover span {
  color: #bd0406;
}
.i-download .s-col .s-main li i,
.i-download .s-col .s-main li span {
  vertical-align: middle;
  transition: all ease-out 0.3s;
}
.i-download .s-col .s-main li i {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  overflow: hidden;
  background: url("../images/download-black.png") center center no-repeat;
  background-size: cover;
}
.i-download .s-col .s-main li span {
  display: inline-block;
  width: auto;
  height: auto;
  overflow: hidden;
  margin-left: 0.75em;
  font-size: 1.6rem;
  color: #666;
}
@media screen and (max-width: 991px) {
 
  /*以下样式为下载列表页手机端样式*/
  .i-download {
    box-sizing: border-box;
    padding: 0 0.75em;
  }
  .i-download .s-col {
    width: 100%;
    margin: 0.25em 0;
    margin-left: 0;
  }
  .i-download .s-col .s-aside {
    height: 5em;
  }
  .i-download .s-col .s-aside img {
    height: 2em;
  }
  .i-download .s-col .s-aside h3 {
    font-size: 1.6rem;
  }
  .i-download .s-col .s-main {
    height: auto;
    min-height: 5em;
  }
  .i-download .s-col .s-main li span {
    font-size: 1.4rem;
    line-height: 3;
  }
}

