@charset "utf-8";
/* CSS Document */
*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    font: 12px Arial, "microsoft yahei";
    color: #333;
    background: #f4f5fa;
    position: relative;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
}

ul, li, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: #e60012;
}

input, textarea, select, button {
    font-family: Arial, "Microsoft YaHei";
}

input:focus, textarea:focus, select:focus, button:focus {
    outline: none;
}

::-moz-selection {
    background: #aaa;
    color: #FFF;
}

::selection {
    background: #aaa;
    color: #FFF;
}

img {
    border: 0;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.clear {
    zoom: 1;
    clear: both;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr, table td {
    max-width: 100%;
    border: solid 1px #eee;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.left {
    display: flex;
    flex-wrap: wrap;
}

.right {
    display: flex;
    justify-content: flex-end;
}

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centerT {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cutTwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cutThree {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.scrollbar::-webkit-scrollbar {
    width: 2px;
    background: #f4f4f4;
}

.scrollbar::-webkit-scrollbar-button {
    display: none;
}

.scrollbar::-webkit-scrollbar-track {
    display: none;
}

.scrollbar::-webkit-scrollbar-track-piece {
    display: none;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #e60012;
}

.scrollbar::-webkit-scrollbar-corner {
    display: none;
}

.scrollbar::-webkit-resizer {
    display: none;
}

.wrap {
    width: 83.33%;
    margin: auto;
    min-width: 1200px;
}

.c1440 {
    width: 75%;
    margin: auto;
    min-width: 1200px;
}

.c1200 {
    width: 1200px;
    margin: auto;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins.ttf');
}

@font-face {
    font-family: 'PoppinsExtraBold';
    src: url('../fonts/Poppins-ExtraBold.ttf');
}

@font-face {
    font-family: 'syhtcnHeavy';
    src: url('../fonts/SourceHanSerifCN-Heavy-4.otf');
}

@font-face {
    font-family: 'OPPOSansH';
    src: url('../fonts/OPPOSans-H-2.ttf');
}


/* header */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.6s ease;
}

.header::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.headerC {
    padding: 25px 0;
    transition: all 0.6s ease;
    position: relative;
}

.header .logo {
    display: block;
    float: left;
}

.header .logo .h {
    display: inline-block;
    vertical-align: top;
    width: 146px;
    height: 50px;
    background: url(../images/logo1.png) center no-repeat;
    background-size: 146px 50px !important;
    transition: all 0.6s ease;
}

.header .logo .s {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    margin-left: 15px;
    padding-left: 15px;
    font-size: 30px;
    line-height: 50px;
    color: #fff;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
}

.header .box {
    float: right;
}

.header .navBox {
    margin-top: 0;
}

.header .navBox .nLi {
    position: relative;
    margin-right: 60px;
}

.header .navBox .nLi:last-child {
    margin-right: 0;
}

.header .navBox .nLi h3 a {
    display: block;
    line-height: 26px;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    padding: 12px 0;
    transition: all 0.6s ease;
}

.header .navBox .nLi:hover h3 a, .header .navBox .nLi#on h3 a {
    color: #e60012;
}

.header .navBox .nLi .sub {
    display: none;
    width: 160px;
    position: absolute;
    top: 48px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 3;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header .navBox .nLi .sub > li {
    border-bottom: 1px solid #eee;
}

.header .navBox .nLi .sub > li:last-child {
    border-bottom: none;
}

.header .navBox .nLi .sub > li > a {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    padding: 10px 8px;
    transition: all 0.6s ease;
}

.header .navBox .nLi .sub > li > a:hover, .navBox .nLi .sub > li > a.on {
    background-color: #e60012;
    color: #fff;
}


.is-fixed {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.is-fixed .headerC {
    padding: 15px 0;
}

.is-fixed .logo .h {
    background: url(../images/logo.png) center no-repeat;
}

.is-fixed .logo .s {
    color: #333;
    border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.is-fixed .navBox .nLi h3 a {
    color: #333;
}

.is-fixed .navBox .nLi:hover h3 a, .is-fixed .navBox .nLi#on h3 a {
    color: #e60012;
}


@media (max-width: 1680px) {
    .header .navBox .nLi {
        margin-right: 50px;
    }

    .header .navBox {
        max-width: 960px;
    }
}


/* indexMain */
.indexMain {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}


/* indexBanner */
.indexBanner {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.indexBanner .swiper-wrapper {
    height: 100%;
}

.indexBanner .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover !important;
}

.indexBanner .swiper-slide a {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    display: inline-block;
}

.indexBanner .swiper-pagination {
    bottom: 80px !important;
    right: 0;
}

.indexBanner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-color: #fff;
    border: solid 1px #eee;
    border-radius: 0;
    transition: all 0.6s ease;
    opacity: 0.4;
    margin: 0 10px !important;
    position: relative;
}

.indexBanner .swiper-pagination-bullet-active {
    opacity: 1;
}

.indexNav {
    position: absolute;
    width: 360px;
    top: 50%;
    right: 12.25%;
    transform: translateY(-50%);
    z-index: 2;
}

.indexNav li {
    width: 100%;
    height: 90px;
    border-bottom: solid 1px #eee;
    background-color: #fff;
    transition: all 0.6s ease;
}

.indexNav li a {
    display: inline-block;
    width: 100%;
    padding: 18px 60px 18px 30px;
    position: relative;
    transition: all 0.6s ease;
}

.indexNav li .icon {
    float: left;
    width: 50px;
    height: 50px;
    background-size: 50px 50px !important;
    transition: all 0.6s ease;
}

.indexNav li .icon1 {
    background: url(../images/icon/icon_nav01.png) center no-repeat;
}

.indexNav li .icon2 {
    background: url(../images/icon/icon_nav02.png) center no-repeat;
}

.indexNav li .icon3 {
    background: url(../images/icon/icon_nav03.png) center no-repeat;
}

.indexNav li .info {
    float: left;
    margin-left: 15px;
    line-height: 27px;
}

.indexNav li .info h2 {
    font-size: 18px;
    color: #333;
    font-weight: normal;
}

.indexNav li .info p {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.indexNav li .iconfont {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -11px;
    border-radius: 50%;
    background-color: #e60012;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
    transition: all 0.6s ease;
    transform: rotate(180deg);
}

.indexNav li:hover {
    background-color: #000;
}

.indexNav li:hover .icon1 {
    background: url(../images/icon/icon_nav01_1.png) center no-repeat;
}

.indexNav li:hover .icon2 {
    background: url(../images/icon/icon_nav02_1.png) center no-repeat;
}

.indexNav li:hover .icon3 {
    background: url(../images/icon/icon_nav03_1.png) center no-repeat;
}

.indexNav li:hover .info h2, .indexNav li:hover .info p {
    color: #fff;
}

.indexNav li:hover .iconfont {
    background-color: #fff;
    color: #e60012;
}

.indexNav li:last-child {
    border-bottom: 0;
}

/* copy */
.indexMain .copy {
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    width: 100%;
    padding: 15px 0;
    line-height: 20px;
    width: 100%;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}

.indexMain .copy .l {
    max-width: 45%;
}

.indexMain .copy .l span {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 0 0;
    padding-top: 3px;
    color: #333;
}

.indexMain .copy .l a {
    display: inline-block;
    vertical-align: top;
    height: 16px;
    margin: 2px 0;
}

.indexMain .copy .l img {
    display: inline-block;
    height: 16px;
}

.indexMain .copy .r {
    font-size: 14px;
    color: #666;
    max-width: 45%;
}

.indexMain .copy .r a {
    color: #333;
}

.indexMain .copy .r a:hover {
    color: #e60012;
}

/* indexFooter */
.indexFooter {
    width: 100%;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.indexFooter .box {
    width: 100%;
    padding: 80px 0 40px;
    position: relative;
}

.indexFooter .box .flogo {
    display: inline-block;
    width: 146px;
    height: 50px;
    background: url(../images/logo1.png) center no-repeat;
    background-size: 146px 50px;
}

.indexFooter .box .fnav {
    line-height: 30px;
    margin: 0 0;
}

.indexFooter .box .fnav {
    max-width: 1000px;
    padding: 0;
}

.indexFooter .box .fnav dl {
    margin-left: 70px;
}

.indexFooter .box .fnav dl:first-child {
    margin-left: 0;
}

.indexFooter .box .fnav dl dt {
    margin-bottom: 15px;
}

.indexFooter .box .fnav dl dt a {
    font-size: 16px;
    display: inline-block;
    color: #fff;
}

.indexFooter .box .fnav dl dd {
    margin: 2px 0;
}

.indexFooter .box .fnav dl dd a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.indexFooter .box .fnav dl a:hover {
    color: #e60012;
}

.indexFooter .link {
    padding: 20px 0;
    width: 100%;
    text-transform: uppercase;
    position: relative;
}

.indexFooter .link span {
    font-size: 14px;
    display: inline-block;
    margin: 5px 0;
    line-height: 24px;
    color: #666;
}

.indexFooter .link a {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin: 5px 15px 5px 0;
}

.indexFooter .link a:hover {
    color: #e60012;
}

.indexFooter .copy {
    padding: 15px 0;
    line-height: 20px;
    width: 100%;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}

.indexFooter .copy .l {
    max-width: 45%;
    color: #666;
}

.indexFooter .copy .l span {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 0 0;
    padding-top: 3px;
    color: #fff;
}

.indexFooter .copy .l a {
    display: inline-block;
    vertical-align: top;
    height: 16px;
    margin: 2px 0;
}

.indexFooter .copy .l img {
    display: inline-block;
    height: 16px;
}

.indexFooter .copy .r {
    font-size: 14px;
    color: #666;
    max-width: 45%;
}

.indexFooter .copy .r a {
    color: #666;
}

.indexFooter .copy .r a:hover {
    color: #e60012;
}


/* pageBanner */
.pageBanner {
    width: 100%;
    position: relative;
    z-index: 1;
    min-width: 1200px;
}

.pageBanner .bg {
    width: 100%;
    position: relative;
    z-index: 1;
}

.pageBanner .bg img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.pageBanner .bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0));
}

.pageBanner .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 3;
    color: #fff;
    text-align: center;
}

.pageBanner .info h2 {
    font-size: 46px;
}

.pageBanner .info p {
    font-size: 24px;
    margin-top: 5px;
    text-transform: capitalize;
    font-family: 'PoppinsExtraBold';
}


/* pageTitle */
.pageTitle {
    width: 100%;
    position: relative;
    text-align: center;
}

.pageTitle p {
    font-size: 40px;
    color: #333;
    font-family: 'PoppinsExtraBold';
    text-transform: uppercase;
    line-height: 46px;
}

.pageTitle h3 {
    font-size: 30px;
    color: #333;
    font-weight: normal;
    margin-top: 5px;
}

/* pageAbout */
.pageAbout {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pageAbout .text {
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    margin: 50px auto;
}

.pageAbout .text img {
    max-width: 100%;
    height: auto !important;
}

.pageAbout .info {
    width: 100%;
}

.pageAbout .info li {
    padding: 0 90px;
    position: relative;
    text-align: center;
}

.pageAbout .info li::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50px;
    margin-top: -25px;
    background-color: #ddd;
}

.pageAbout .info li:last-child::after {
    display: none;
}

.pageAbout .info li .d {
}

.pageAbout .info li .d .icon {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    background-size: 30px 30px !important;
}

.pageAbout .info li .d .icon.icon1 {
    background: url(../images/icon/icon_about1.png) center no-repeat;
}

.pageAbout .info li .d .icon.icon2 {
    background: url(../images/icon/icon_about2.png) center no-repeat;
}

.pageAbout .info li .d .icon.icon3 {
    background: url(../images/icon/icon_about3.png) center no-repeat;
}

.pageAbout .info li .d .n {
    font-size: 14px;
    color: #333;
    line-height: 30px;
    margin-left: 10px;
}

.pageAbout .info li .d .n span {
    display: inline-block;
    margin-right: 5px;
    font-size: 38px;
    font-family: 'PoppinsExtraBold';
}

.pageAbout .info li .t {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.pageAbout .info li:nth-child(1) .d .n span {
    width: 85px;
}

.pageAbout .info li:nth-child(2) .d .n span {
    width: 50px;
}

.pageAbout .info li:nth-child(3) .d .n span {
    width: 50px;
}

/* pageContent */
.pageContent {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pageContent .text {
    font-size: 16px;
    line-height: 40px;
    margin: 0 auto;
}

.pageContent .text img {
    max-width: 100%;
    height: auto !important;
}


/* pageHistory */
.pageHistory {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: url(../images/about/historyBg.jpg) center no-repeat fixed;
    background-size: cover;
}

.pageHistory .pageTitle p, .pageHistory .pageTitle h3 {
    color: #fff;
}

.pageHistory .historyBox {
    width: 100%;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.historyBox .c1200 {
    position: relative;
}

.historyBox .tempWrap {
    margin: auto;
}

.historyBox .bigImg {
}

.historyBox .bigImg li {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

.historyBox .bigImg li .n {
    font-size: 400px;
    line-height: 280px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'PoppinsExtraBold';
}

.historyBox .bigImg li .box {
    background-color: #fff;
    width: 600px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.historyBox .bigImg li .img {
    width: 200px;
}

.historyBox .bigImg li .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.historyBox .bigImg li .info {
    padding: 25px 30px;
    width: 400px;
    z-index: 2;
    position: relative;
}

.historyBox .bigImg li .info::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 30px;
    height: 3px;
    background-color: #eee;
}

.historyBox .bigImg li .info .t {
    font-size: 18px;
    color: #333;
}

.historyBox .bigImg li .info .t span {
    display: inline-block;
    font-size: 30px;
    margin-right: 10px;
    font-family: 'PoppinsExtraBold';
}

.historyBox .bigImg li .info .p {
    font-size: 18px;
    line-height: 32px;
    color: #333;
    margin-top: 10px;
}

.historyBox .smallScroll {
    width: 100%;
    margin-top: 80px;
    position: relative;
}

.historyBox .smallScroll::after {
    content: '';
    width: 100%;
    height: 1px;
    top: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 0;
}

.historyBox .smallImg {
    width: 100%;
    overflow: hidden;
    margin: 5px 0;
    position: relative;
}

.historyBox .smallImg ul {
    width: 100%;
    overflow: hidden;
}

.historyBox .smallImg li {
    width: 20%;
    float: left;
    position: relative;
    font-size: 20px;
    padding-top: 30px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}

.historyBox .smallImg li span {
    display: inline-block;
    margin-right: 5px;
    font-family: 'PoppinsExtraBold';
}

.historyBox .smallImg li i {
    display: inline-block;
    width: 21px;
    height: 21px;
    border: solid 1px rgba(255, 255, 255, 0.4);
    position: relative;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.historyBox .smallImg li i::after {
    content: '';
    width: 7px;
    height: 7px;
    top: 6px;
    left: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
}

.historyBox .smallImg li.on {
    color: #e60012;
}

.historyBox .smallImg li.on i {
    border-color: #e60012;
}

.historyBox .smallImg li.on i::after {
    background-color: #e60012;
}

.historyBox .sPrev, .historyBox .sNext {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -270px;
    margin-top: -20px;
    border-radius: 50px;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
    color: #e60012;
    font-size: 24px;
    transition: all ease 0.6s;
}

.historyBox .sPrev {
    left: 50%;
    margin-left: -600px;
}

.historyBox .sNext {
    right: 50%;
    margin-right: -600px;
    transform: rotate(180deg);
}

.historyBox .sPrev:hover, .historyBox .sNext:hover {
    background: #e60012;
    color: #fff;
}

.historyBox .prevStop, .historyBox .nextStop {
    opacity: 0.5;
}


/* pageHonor */
.pageHonor {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.honorBox {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.honorBox .next, .honorBox .prev {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    transition: all ease 0.6s;
    z-index: 2;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    color: #fff;
    background-color: #000;
}

.honorBox .prev {
    left: -80px;
}

.honorBox .next {
    right: -80px;
    transform: translateY(-50%) rotate(180deg);
}

.honorBox .prev:hover, .honorBox .next:hover {
    background-color: #e60012;
    color: #fff;
}

.honorBox .bd {
    padding: 0;
    overflow: hidden;
}

.honorBox .bd ul {
    overflow: hidden;
    zoom: 1;
}

.honorBox .bd ul li {
    margin-right: 20px;
    width: 285px !important;
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.honorBox .bd ul li .img {
    text-align: center;
    width: 100%;
}

.honorBox .bd ul li .img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.honorBox .bd ul li .tit {
    line-height: 26px;
    font-size: 16px;
    color: #333;
    padding-top: 20px;
    margin-top: 20px;
    border-top: solid 1px #eee;
}


/* pageVideo */
.pageVideo {
    width: 100%;
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pageVideo .videoBox {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.pageVideo .videoBox video {
    width: 100%;
    position: relative;
    z-index: 1;
}

.pageVideo .videoBox #playVideo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.pageVideo .videoBox #playVideo p {
    width: 78px;
    height: 78px;
    font-size: 80px;
    display: inline-block;
    text-align: center;
    color: #fff;
    position: absolute;
    border-radius: 50%;
    overflow: hidden; /* background-color: #fff; */
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    cursor: pointer;
    display: inline-block;
    line-height: 80px;
    overflow: hidden;
}

.pageVideo .videoBox #playVideo p::after {
    content: '';
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: dashed 2px #fff;
    box-sizing: border-box;
    position: absolute;
    left: 1px;
    top: 2px;
    animation: turn 10s linear infinite;
}

@keyframes turn {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}


/* pageSupport */
.pageSupport {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pageSupport .item {
    width: 100%;
    padding: 80px 0;
}

.pageSupport .item:first-child {
    border-bottom: solid 1px #e5e5e5;
}

.pageSupport .item .img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.pageSupport .item .img img {
    width: 100%;
    display: block;
}

.pageSupport .item .info {
    padding-top: 40px;
    width: 50%;
}

.pageSupport .item .info .tit {
    font-size: 24px;
    color: #333;
}

.pageSupport .item .info .txt {
    font-size: 16px;
    color: #333;
    line-height: 32px;
    margin-top: 20px;
}

.pageSupport .item .info .tel {
    margin-top: 70px;
}

.pageSupport .item .info .tel .iconfont {
    display: inline-block;
    vertical-align: middle;
    font-size: 60px;
    color: #e60012;
    margin-right: 10px;
}

.pageSupport .item .info .tel .t {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 24px;
}

.pageSupport .item .info .tel .t span {
    font-size: 16px;
}

.pageSupport .item .info .tel .t p {
    font-size: 36px;
    margin-top: 10px;
    font-family: 'PoppinsExtraBold';
}

.pageSupport .item:nth-child(1) .info {
    padding-left: 60px;
}

.pageSupport .item:nth-child(2) .info {
    padding-right: 60px;
}


/* caseNav */
.caseNav {
    width: 100%;
    padding: 20px 0;
    position: relative;
    background-color: #fff;
}

.caseNav ul {
    width: 100%;
}

.caseNav ul li {
    width: 16.66%;
}

.caseNav ul li a {
    line-height: 30px;
    color: #333;
}

.caseNav ul li .iconfont {
    font-size: 36px;
    margin-right: 5px;
}

.caseNav ul li .tit {
    font-size: 18px;
}

.caseNav ul li:nth-child(1) .iconfont::before {
    content: "\e60a";
}

.caseNav ul li:nth-child(2) .iconfont::before {
    content: "\e715";
}

.caseNav ul li:nth-child(3) .iconfont::before {
    content: "\e623";
}

.caseNav ul li:nth-child(4) .iconfont::before {
    content: "\e87a";
}

.caseNav ul li:nth-child(5) .iconfont::before {
    content: "\e8de";
}

.caseNav ul li:nth-child(6) .iconfont::before {
    content: "\e657";
}

.caseNav ul li.on a, .caseNav ul li:hover a {
    color: #e60012;
}

/* pageCase */
.pageCase {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pageCase li {
    width: 31.33%;
    margin: 0 3% 3% 0;
    position: relative;
    background-color: #fff;
    transition: all 0.6s ease;
}

.pageCase li:nth-child(3n) {
    margin-right: 0;
}

.pageCase li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.pageCase li .img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pageCase li .img img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}

.pageCase li .info {
    padding: 25px 30px;
}

.pageCase li .info .tit {
    font-size: 18px;
    color: #333;
    transition: all 0.6s ease;
}

.pageCase li .info .en {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    transition: all 0.6s ease;
}

.pageCase li .info .more {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    transition: all 0.6s ease;
}

.pageCase li .info .more span {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    background-color: #e60012;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
    transform: rotate(180deg);
    transition: all 0.6s ease;
    border-radius: 50%;
    margin-left: 10px;
}

.pageCase li:hover {
    background-color: #e60012;
}

.pageCase li:hover img {
    transform: scale(1.1);
}

.pageCase li:hover .tit, .pageCase li:hover .en, .pageCase li:hover .more {
    color: #fff;
}

.pageCase li:hover .more span {
    background-color: #fff;
    color: #e60012;
}


/* pageCrumbs */
.pageCrumbs {
    width: 100%;
    padding: 15px 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
}

.pageCrumbs .crumbs {
    max-width: 80%;
    padding: 7px 0;
    line-height: 22px;
    font-size: 14px;
    color: #999;
}

.pageCrumbs .crumbs a {
    display: inline-block;
    color: #999;
}

.pageCrumbs .crumbs a:hover, .pageCrumbs .crumbs a:last-child {
    color: #e60012;
}

.pageCrumbs .crumbs span {
    display: inline-block;
    margin: 0 5px;
}

.pageCrumbs .back a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background-color: #333;
    line-height: 36px;
    padding: 0 20px;
    transition: all ease 0.6s;
}

.pageCrumbs .back a:hover {
    background-color: #e60012;
}


/* pageCaseD */
.pageCaseD {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.pageCaseD .tit {
    text-align: center;
    font-size: 30px;
    font-weight: normal;
    color: #333;
}

.pageCaseD .tit p {
    font-size: 20px;
    margin-top: 10px;
    font-size: 26px;
}

.pageCaseD .info {
    width: 100%;
    font-size: 18px;
    margin: 40px 0;
}

.pageCaseD .info table {
    width: 100%;
}

.pageCaseD .info table tr {
    border-bottom: 1px solid #e5e5e5;
}

.pageCaseD .info table tr:last-child {
    border-bottom: none;
}

.pageCaseD .info table tr td {
    color: #333;
    font-size: 18px;
    line-height: 26px;
    padding: 20px 30px;
    background-color: #f4f5fa;
    border: 1px solid #e5e5e5;
    position: relative;
}

.pageCaseD .info table tr td.t1 {
    width: 13% !important;
    border-right: 0 !important;
}

.pageCaseD .info table tr td.t1::after {
    content: '';
    width: 1px;
    height: 50%;
    position: absolute;
    right: 0;
    top: 25%;
    background-color: rgba(0, 0, 0, 0.1);
}

.pageCaseD .info table tr td.t2 {
    width: 37% !important;
    padding: 20px 30px;
    border-left: 0 !important;
}

.pageCaseD .info table tr td span {
    display: inline-block;
    width: 100%;
}

.pageCaseD .info table tr td p {
    font-size: 14px;
    width: 100%;
    margin-top: 0;
    line-height: 24px;
    display: inline-block;
    text-transform: capitalize;
}

.pageCaseD .info table tr td:nth-child(n+3) {
    background-color: rgba(230, 0, 18, 0.1);
}

.pageCaseD .info table tr td:last-child {
    border-right: none;
}

.pageCaseD .slogan {
    font-size: 26px;
    margin: 50px 0 20px;
}

.pageCaseD .txt {
    font-size: 16px;
    line-height: 34px;
}

.pageCaseD .txt img {
    max-width: 100%;
    height: auto !important;
}

.pageCaseD .caseImg {
    width: 100%;
    margin: 40px auto 0;
    position: relative;
}

.pageCaseD .caseImg .swiper-slide {
    width: 100%;
    position: relative;
}

.pageCaseD .caseImg .swiper-slide img {
    width: 100%;
}

.pageCaseD .caseImg .swiper-pagination {
    bottom: 20px;
    right: 0;
}

.pageCaseD .caseImg .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0.6;
    margin: 0 10px !important;
}

.pageCaseD .caseImg .swiper-pagination-bullet-active {
    opacity: 1;
}

.pageCaseD .caseImg .swiper-button-prev, .pageCaseD .caseImg .swiper-button-next {
    text-align: center;
    color: #333;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all ease-in 0.6s;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}

.pageCaseD .caseImg .swiper-button-prev::after, .pageCaseD .caseImg .swiper-button-next::after {
    display: none;
}

.pageCaseD .caseImg .swiper-button-prev {
    left: 4%;
}

.pageCaseD .caseImg .swiper-button-next {
    right: 4%;
    transform: rotate(180deg);
}

.pageCaseD .caseImg .swiper-button-next:hover, .pageCaseD .caseImg .swiper-button-prev:hover {
    background-color: #e60012;
    color: #fff;
}

/* pageNews */
.firstNews {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.firstNews .img {
    width: 520px;
    position: relative;
    overflow: hidden;
}

.firstNews .img a {
    display: inline-block;
    position: relative;
}

.firstNews .img img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transition: all ease 0.6s;
}

.firstNews .img .time {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 13px 0;
    width: 80px;
    height: 80px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all ease 0.6s;
    font-family: 'PoppinsExtraBold';
}

.firstNews .img .time p {
    font-size: 30px;
    line-height: 34px;
}

.firstNews .img .time span {
    display: inline-block;
    font-size: 14px;
}

.firstNews .img:hover img {
    transform: scale(1.05);
}

.firstNews .img:hover .time {
    background-color: rgba(230, 0, 18, 0.9);
}

.firstNews .info {
    width: 620px;
    padding-top: 50px;
}

.firstNews .info .tit a {
    display: inline-block;
    font-size: 18px;
    color: #333;
    transition: all ease 0.6s;
}

.firstNews .info .tit a:hover {
    color: #e60012;
}

.firstNews .info .txt {
    font-size: 16px;
    color: #999;
    line-height: 30px;
    margin-top: 20px;
}

.firstNews .info .more {
    margin-top: 50px;
}

.firstNews .info .more a {
    display: inline-block;
    font-size: 16px;
    color: #333;
    line-height: 22px;
    transition: all 0.6s ease;
}

.firstNews .info .more a span {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    background-color: #e60012;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
    transform: rotate(180deg);
    transition: all 0.6s ease;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.6s ease;
}

.pageNews {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.pageNews ul {
    width: 100%;
}

.pageNews li {
    width: 31.33%;
    margin: 0 3% 3% 0;
    position: relative;
    border: solid 1px #eee;
    transition: all 0.6s ease;
}

.pageNews li:nth-child(3n) {
    margin-right: 0;
}

.pageNews li a {
    width: 100%;
    height: 100%;
    padding: 30px 30px 100px 30px;
    display: inline-block;
    position: relative;
}

.pageNews li .time {
    font-size: 18px;
    color: #333;
    font-family: 'PoppinsExtraBold';
    transition: all 0.6s ease;
}

.pageNews li .tit {
    font-size: 18px;
    color: #333;
    margin: 10px 0 20px;
    line-height: 30px;
    transition: all 0.6s ease;
}

.pageNews li .txt {
    font-size: 16px;
    color: #999;
    line-height: 30px;
    transition: all 0.6s ease;
}

.pageNews li .more {
    position: absolute;
    width: calc(100% - 60px);
    border-top: solid 1px #eee;
    left: 30px;
    bottom: 30px;
    font-size: 16px;
    color: #333;
    padding-top: 25px;
    line-height: 22px;
    transition: all 0.6s ease;
}

.pageNews li .more span {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    background-color: #e60012;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
    transform: rotate(180deg);
    transition: all 0.6s ease;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.6s ease;
}

.pageNews li:hover {
    background-color: rgba(230, 0, 18, 0.06);
    border-color: #e60012;
}

.pageNews li:hover .more {
    border-color: #e60012;
}

/* pageNewsD */
.pageNewsD {
    width: 100%;
    padding: 80px 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.pageNewsD .tit {
    text-align: center;
    font-size: 30px;
    color: #333;
    font-weight: normal;
}

.pageNewsD .info {
    text-align: center;
    padding: 20px 0;
}

.pageNewsD .info span {
    display: inline-block;
    font-size: 16px;
    margin: 0 20px;
    color: #999;
}

.pageNewsD .text {
    font-size: 16px;
    line-height: 34px;
    border-top: dashed 1px #ddd;
    border-bottom: dashed 1px #ddd;
    padding: 40px 0;
}

.pageNewsD .text img {
    max-width: 100%;
    display: inline-block;
    height: auto !important;
}

.Plink {
    width: 100%;
    margin-top: 40px;
    position: relative;
    padding: 10px 0;
}

.Plink .prev {
    max-width: 48%;
    display: inline-block;
    color: #666;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.6s ease;
}

.Plink .next {
    max-width: 48%;
    display: inline-block;
    color: #666;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.6s ease;
}

.Plink .prev:hover, .Plink .next:hover {
    text-decoration: underline;
    color: #e60012;
}


/* pageProduct */
.pageProduct {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pageProduct ul {
    width: 100%;
}

.pageProduct ul li {
    width: 32%;
    margin: 0 2% 2% 0;
    text-align: center;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.pageProduct ul li:nth-child(3n) {
    margin-right: 0;
}

.pageProduct ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
}

.pageProduct ul li .tit {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.pageProduct ul li .en {
    font-size: 16px;
    text-transform: uppercase;
    color: #999;
    margin-top: 10px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.pageProduct ul li .img {
    width: 80%;
    margin: 0 10%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pageProduct ul li .img img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}

.pageProduct ul li .more {
    width: 70%;
    font-size: 14px;
    color: #333;
    margin: auto;
    border: solid 1px #eee;
    line-height: 44px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.pageProduct ul li:hover .more {
    background-color: #e60012;
    color: #fff;
    border-color: #e60012;
}

.pageProduct ul li:hover .tit {
    color: #e60012;
}

.pageProduct ul li:hover img {
    transform: scale(1.1);
}


.pageSearch {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    background-color: #fff;
}

.pageSearch form {
    width: 800px;
    margin: auto;
    height: 50px;
    background-color: #f4f5fa;
    overflow: hidden;
    border: solid 1px #ddd;
}

.pageSearch form #catid {
    float: left;
    width: 150px;
    border: 0;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 50px;
    height: 50px;
    border-right: solid 1px #ddd;
    color: #333;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0);
}

.pageSearch form .inputBox {
    width: 588px;
    height: 50px;
    float: left;
    font-size: 16px;
    border: none;
    color: #333333;
    padding-left: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0);
}

.pageSearch form .btn {
    border: none;
    background-color: rgb(0, 0, 0, 0);
    font-size: 26px;
    color: #333;
    width: 60px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: right;
    cursor: pointer;
    transition: all 0.6s ease;
}

.pageSearch form .btn:hover {
    color: #e60012;
}


/*pages*/
.pages {
    padding: 60px 0 0 0;
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.pages a {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0 12px;
    margin: 0 5px;
}

.pages a:hover {
    background: #e60012;
    text-decoration: none
}

.pages span {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    background: #e60012;
    color: #fff;
    text-align: center;
    padding: 0 12px;
    margin: 0 5px;
}

