@charset "utf-8";

html {
    font-size: 62.5%;
    /*10 ÷ 16 × 100% = 62.5%*/
}

/*消除浏览器底部*/
#tip-arrow-top,
#tip-arrow-bottom,
#trans-tooltip {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}


img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

body {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #3f3b3b;
    font-size: 1.2rem;
    /*1.6 × 10px = 16px */
    font-family: "Microsoft YaHei", Arial, helvetica, sans-serif;
    background: #ffffff;
    line-height: 1;
}

body#index main {
    margin-bottom: 0 !important;
}

main {
    margin-bottom: 0;
}

footer {
    margin-bottom: 60px;
}

:root {
    --base_color: #3a4dc6;
    --second_color: #ffc000;
    --base_bg_color: #f9f9fd;
    --second_bg_color: #ffc000;
}

.base_color {
    color: var(--base_color) !important;
}


.second_color {
    color: var(--second_color) !important;
}

.base_bg {
    background-color: var(--base_color);
}

.second_bg {
    background-color: var(--second_color);
}

.pointer {
    cursor: pointer;
}

.hover_base_color:hover,
.hover_base_color:hover * {
    color: var(--base_color) !important;
}

.hover_second_color:hover,
.hover_second_color:hover * {
    color: var(--second_color) !important;
}


.hover_base_bg:hover,
.hover_base_bg:hover * {
    background-color: var(--base_color) !important;
}

.hover_second_bg:hover,
.hover_second_bg:hover * {
    background-color: var(--second_color) !important;
}

.hover_white_bg:hover {
    background-color: #ffffff !important;
}

.hover_white_bg:hover .hover_second_bg {
    background-color: var(--second_color) !important;
}

.hover_border:hover {
    background-color: var(--base_color) !important;
    color: #fff !important;
    border: 1px solid var(--base_color) !important;
}

.hover_border:hover * {
    color: #fff !important;
}

.hover_line:after {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    opacity: 0;
    background-color: var(--second_color);
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: all 0.3s;
}

.hover_line:hover:after {
    width: 100%;
    opacity: 1;
}

.hover_line_white:after {
    background-color: #ffffff;
}

.hover_shadow:hover {
    box-shadow: 0 0 5px rgba(100, 100, 100, 0.5);
}

.hover_shadow-sm:hover {
    box-shadow: 5px 0 5px rgba(12, 3, 7, 0.1);
}

.hover_base:hover {
    background-color: var(--base_color) !important;
    color: #fff !important;
}

.hover_base:hover * {
    color: #fff !important;
}

.hover_base:hover .title:after {
    background-color: #fff !important;
}

.hover_base_border:hover {
    background-color: var(--base_color) !important;
    color: #fff !important;
    border: 1px solid var(--base_color) !important;
}

.hover_brightness {
    transition: all 0.3s;
}

.hover_brightness:hover {
    filter: brightness(120%);
}

.hover_brightness-lg {
    transition: all 0.3s;
}

.hover_brightness-lg:hover {
    filter: brightness(200%);
}


.hover_drop_shadow {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3))
}

.hover_play i {
    transition: all 0.3s;
}

.hover_play:hover i {
    transform: scale(1.1) rotate(360deg);
}

.hover_scale:hover {
    transform: scale(1.01);
}

.hover_Y .cover {
    transform: translateY(101%);
    transition: all 0.3s;
}

.hover_Y:hover .cover {
    transform: translateY(0);
}

.hover_X .cover {
    transform: translateX(101%);
    transition: all 0.3s;
}

.hover_X:hover .cover {
    transform: translateX(0);
}


@keyframes pulsate {
    50% {
        background-position: 0 180px;
    }
}

p {
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.3s;
}

a:link {
    color: #3f3b3b;
    text-decoration: none
}

a:visited {
    color: #3f3b3b;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: var(--base_color);
}

a:focus {
    outline: none;
    -moz-outline: none;
}


img {
    border: 0px;
}

input,
textarea,
button,
div {
    outline: none !important;
}

ul,

li,

dl,

dt,

dd {
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

canvas {
    margin: 0;
    padding: 0;
    display: block;
    border: none;
}

.cover {
    z-index: 1;
}

.imgbox {
    position: relative;
    overflow: hidden;
}

.imgbox:after {
    content: '';
    display: block;
}

.imgbox img,
.imgbox video,
.imgbox div.contbox {
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imgbox img { width: 100%; height: 100%; object-fit: cover; }

.imgbox_3_1:after {
    margin-top: 33.3333%;
}

.imgbox_5_2:after {
    margin-top: 40%;
}

.imgbox_2_1:after {
    margin-top: 50%;
}

.imgbox_4_3:after {
    margin-top: 75%;
}

.imgbox_16_9:after {
    margin-top: 56.25%;
}

.imgbox_5_3:after {
    margin-top: 60%;
}

.imgbox_3_2:after {
    margin-top: 66.66%;
}

.imgbox_1_1:after {
    margin-top: 100%;
}

.imgbox_3_4:after {
    margin-top: 133.33%;
}

.imgbox_4_3 video {
    width: 100% !important;
    margin: 0 auto;
    display: block;
}

.imgbox_672_490:after {
    margin-top: 72.916666%;
}

.imgbox_673_465:after {
    margin-top: 69.0936%;
}

.imgbox_430_219:after {
    margin-top: 50.93%;
}

.imgbox_310_345:after {
    margin-top: 111.29%;
}

.linear {
    background-image: linear-gradient(to bottom, rgba(42, 57, 128, 0) 50%, rgba(42, 57, 128, 0) 50%, rgba(42, 57, 128, 0.8));
    top: 0;
    left: 0;
    z-index: 2;
}

.reflect {
    -webkit-box-reflect: below 0px -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    position: relative;
}

.ImgScale img {
    transition: all 0.3s;
}

.ImgScale:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}

.IScale i,
.IScale img {
    transition: all 1s;
}

.IScale:hover i {
    transform: translate(0) scale(1.05);
}

.rotateY:before {
    transform: rotateY(180deg);
}

.rotateY {
    transform: rotateY(180deg);
}


.r-18 {
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
}

.r-26 {
    width: 26px !important;
    height: 26px !important;
    line-height: 26px !important;
}

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

.clamp-1 {
    -webkit-line-clamp: 1;
}

.clamp-2 {
    -webkit-line-clamp: 2;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.clamp-4 {
    -webkit-line-clamp: 4;
}

.clamp-5 {
    -webkit-line-clamp: 5;
}

.clamp-6 {
    -webkit-line-clamp: 6;
}

.clamp-7 {
    -webkit-line-clamp: 7;
}

.fs-12 {
    font-size: 1.2rem;
}

.fs-14 {
    font-size: 1.4rem;
}

.fs-15 {
    font-size: 1.5rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-17 {
    font-size: 1.7rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-20 {
    font-size: 2.0rem;
}

.fs-22 {
    font-size: 2.2rem;
}

.fs-23 {
    font-size: 2.3rem;
}

.fs-24 {
    font-size: 2.4rem;
}

.fs-26 {
    font-size: 2.6rem;
}

.fs-28 {
    font-size: 2.8rem;
}

.fs-30 {
    font-size: 3.0rem;
}

.fs-36 {
    font-size: 3.6rem;
}

.fs-40 {
    font-size: 4.0rem;
}

.fs-50 {
    font-size: 5.0rem;
}

.fs-60 {
    font-size: 6.0rem;
}

.op0 {
    opacity: 0;
}

.op5 {
    opacity: 0.5;
}

.op6 {
    opacity: 0.6;
}

.op7 {
    opacity: 0.7;
}

.op8 {
    opacity: 0.8;
}


.lh-12 {
    line-height: 1.2;
}

.lh-15 {
    line-height: 1.5;
}

.lh-16 {
    line-height: 1.6;
}

.lh-18 {
    line-height: 1.8;
}

.lh-20 {
    line-height: 2.0;
}

.rounded-5 {
    border-radius: 5px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-30 {
    border-radius: 30px;
}

.layui-layer {
    max-width: 96%;
}

.shadow-z {
    box-shadow: 0 0 5px #ccc;
}

.mainInfo {
    color: #3a3939;
}

.mainInfo iframe {
    max-width: 100%;
    max-height: 100%;
    width: 600px;
    height: 480px;
}

.mainInfo span {
	font-family: unset !important;
}


.mainInfo img {
    max-width: 100% !important;
    height: auto !important;
}

.picBottomLine {
    height: 6px;
    transition: all 0.3s;
}

a:hover .picBottomLine {
    width: 100% !important;
}

.line_quick_base_color {
    width: 11px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--base_color);
}

.line_quick_base_color:after {
    content: "";
    display: block;
    margin-top: 3px;
    vertical-align: middle;
    width: 78px;
    height: 1px;
    background-color: var(--base_color);
    margin-left: 34px !important;
}

.line_quick_yellow_color {
    width: 11px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--second_color);
}

.line_quick_yellow_color:after {
    content: "";
    display: block;
    margin-top: 4px;
    vertical-align: middle;
    width: 78px;
    height: 1px;
    background-color: var(--second_color);
    margin-left: 33px;
}

.icon_img {
    width: 46px;
    height: 46px;
}

.more {
    border-right: 3px solid var(--second_color);
}

.more:hover {
    border-right: 3px solid var(--base_color);
    background-color: var(--second_color);
    color: #000 !important;
}

.r-20 {
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
}

.r-30 {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}


.w-110 {
    max-width: 110%;
    width: 110%;
}

.w-120 {
    max-width: 120%;
    width: 120%;
}

.h-unset {
    height: unset !important;
}


.scrolling {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}


/*PAGE

----------------------------------------*/
.de-page-mian {
    overflow: hidden;
    text-align: center;
    font-size: 0;
}

.de-page-mian .page-inner {
    display: inline-block;
    overflow: hidden;
}

.de-page-mian .page-inner a {
    display: block;
    float: left;
    width: 40px;
    margin: 0 5px;
    padding: 0 5px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    background: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
}

.de-page-mian .page-inner a.active,
.de-page-mian .page-inner a:hover {
    color: #fff;
    border-color: var(--base_color);
    background: var(--base_color);
}

.de-page-mian .page-inner a.prev {
    margin-left: 0;
    background: #fff url(../images/prev.jpg) no-repeat center;
}

.de-page-mian .page-inner a.prev.on {
    background: #fff url(../images/prev-hover.jpg) no-repeat center;
}

.de-page-mian .page-inner a.prev:hover {
    background-color: #fff;
    border-color: #dddddd;
}

.de-page-mian .page-inner a.next {
    background: #fff url(../images/next.jpg) no-repeat center;
}

.de-page-mian .page-inner a.next.on {
    background: #fff url(../images/next-hover.jpg) no-repeat center;
}

.de-page-mian .page-inner a.next:hover {
    background-color: #fff;
    border-color: #dddddd;
}

.de-page-mian .page-inner a.page-btn {
    font-size: 1.2rem;
    margin-right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.de-page-mian .page-inner span {
    display: block;
    font-size: 1.6rem;
    color: #343434;
    float: left;
    line-height: 38px;
    margin: 0 5px;
}

.de-page-mian .page-inner input {
    display: block;
    float: left;
    border: 0;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    background-color: #ededed;
    color: #333;
    margin: 0 5px;
}


.page-a {
    padding: 10px 0;
}

.page-a a {
    border-radius: 3px;
    margin-top: -10px;
    float: right;
    width: calc(100% - 60px);
    display: inline-block;
    border: 1px dotted #efefef;
    padding: 10px;
    background-color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-a a:hover {
    background-color: var(--base_color);
    border: 1px dotted var(--base_color);
    color: #fff;
}


/* Header

----------------------------------------*/

header {
    padding-top: 60px;
}

#name_box_w {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    height: 60px;
}

#header_logo img {
    height: 36px;
}

/*#name_box_w:after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(to right, var(--base_color) 92.6%, var(--second_color) 92.6%);
    transition: all 0.8s;
    opacity: 1;
}*/

#name_box_w.boxshow {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#name_box_w.boxshow:after {
    opacity: 0
}

/*nav*/
/*菜单一级*/
.navI {
    flex: 1;
}

.navI li.nav-item {
    flex: 1;
}

.navI li.nav-item>a {
    display: block;
    position: relative;
    flex: 1;
    height: 100%;
    line-height: 20px;
    height: 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.3s;
}

.navI li.nav-item>a:hover,
.navI li.nav-item>a.active {
    cursor: pointer;
    transform: rotateX(90deg);
}

.navI li.nav-item>a:hover .back,
.navI li.nav-item>a.active .back {
    color: var(--base_color) !important;
}

.navI li.nav-item .sub {
    display: none;
    position: absolute;
}

.navI li.nav-item:hover .sub {
    display: block;
}

.navI li.nav-item .front,
.navI li.nav-item .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 300px;
}

.navI li.nav-item .front {
    z-index: 11;
    transform: translateZ(10px);
}

.navI li.nav-item .back {
    transform: translateY(10px) rotateX(-90deg);
}

/* 二级菜单 */
.subMenu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #3c4fc7;
}

.subMenu>ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: left;
    align-items: left;
    padding-left: 150px;
}

.subMenu>ul>li {
    position: relative;
}


.subMenu>ul>li>a {
    display: block;
    padding: 0 18px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.subMenu>ul>li:after {
    content: "";
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    transition: 0.5s;
    z-index: 0;
    opacity: 0;
}

.subMenu>ul>li:hover:after {
    width: 100%;
    opacity: 1;
}


.subMenu>ul>li.active:after {
    width: 100%;
    opacity: 1;
}

/**/


.subNav li:last-child {
    margin-right: 0 !important;
}

.subNav span.movebg {
    width: 76px;
    height: 3px;
    display: block;
    background-color: var(--second_color);
    position: absolute;
    left: 0;
    top: -1px;
    transition: all 0.5s;
}

.subNav .active span {
    font-weight: bold;
}


.location,
.location a,
    {
    color: #b6b6b6;
}

.pos-mid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*NAV*/

.flash_all .swiper-button-prev,
.flash_all .swiper-button-next {
    transition: all 0.3s;
    opacity: 1;
}

.flash_all .swiper-button-prev,
.flash_all .swiper-button-next {
    background-image: none;
    position: static;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    margin: unset;
}


.flash_all .swiper-button-prev:hover,
.flash_all .swiper-button-next:hover {
    background-color: var(--base_color);
    transform: rotate(360deg);
    opacity: 1;
}


.flash_all .swiper-pagination {
    width: auto !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
    outline: none;
    transition: all 0.3s;
    padding: 5px;
    margin: 0 5px;
    opacity: 0.6;
    border-radius: 5px;
}

.swiper-pagination-bullet-active {
    background-color: var(--base_color) !important;
    outline: none;
    padding: 5px 20px !important;
    opacity: 1 !important;
}

/*FLash*/

/*SLIDER*/

.nav-tabs .nav-link.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fee100;
    margin-top: -5px;
}

.date:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fee100;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 0;
}

.location_box:after {
    width: 30%;
    content: '';
    display: block;
    height: 5px;
    background-color: #fcc800;
    position: absolute;
    right: 0;
    bottom: -1px;
}

.catname:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fee100;
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 0;
}


/*Index*/
.top_bar {
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 46px;
}

.top_bar_bg {
    bottom: 0;
    right: 0;
    height: 46px;
}


/*top_bar*/


.bg_half_25 {
    background-image: linear-gradient(to bottom, white 25%, #f9f9fd 25%);
}


.bg_half_35 {
    background-image: linear-gradient(to bottom, white 35%, #f9f9fd 25%);
}

#in_box1 {
    min-height: 600px;
}

#in_box1 .title_bg {
    left: 0;
    top: -20px;
}

#in_box2 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -65px;
    padding-top: 85px !important;
}

#in_box2 .title_bg {
    right: -260px;
    top: -110px;
}


#in_box2 .title.bline i {
    background-color: #ffffff;
}


#in_box3 .title_bg {
    right: 0;
    top: 0;
}


#in_box5 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*about*/

#about #box1:before {
    position: absolute;
    content: "";
    display: block;
    width: 50%;
    height: 252px;
    background-color: #f9f9fd;
    top: 0;
    left: 0;
}


/*News*/

#tpl_piclist li:nth-child(3n+0) {
    border: none !important;
}


#wrj .gallery-thumbs .swiper-slider span {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

#tbi .goodslist li .content {
    /*height: 96px;*/
}

#tbii .goodslist li .content {
    /*height: 160px;*/
}

/* Footer
----------------------------------------*/
.page-footer,
.page-footer a {
    color: #2d2c2c;
}

.page-footer a:hover {
    opacity: 1;
}

#footer_copy {
    color: #fff;
}

#footer_copy a {
    color: #ffffff;
}

#footer_copy a:hover {
    color: #f90;
}

#page-footer-gt li.active a {
    background-color: var(--base_color);
}


/*MESSAGE*/

#page_index #c_mess_box input,

#page_index #c_mess_box textarea {
    margin-bottom: 10px !important;
}

#page_mess_box li {
    margin-bottom: 10px;
}

#page_mess_box li input {
    height: 40px;
}



.apply-job {
    overflow: hidden;
    margin-top: 20px;
}

.apply-job .job-tr {
    overflow: hidden;
}

.apply-job .job-tr .tr-over {
    overflow: hidden;
}

.apply-job .job-tr .error {
    padding-left: 75px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    color: #f00;
}

.apply-job .job-tr .tr-title {
    float: left;
    width: 50px;
    min-height: 20px;
    text-align: right;
    font-size: 14px;
    color: #808080;
    margin-right: 25px;
    line-height: 40px;
}

.apply-job .job-tr .tr-cont {
    float: left;
    width: calc(100% - 100px);
}

.apply-job .job-tr .tr-cont h3 {
    font-size: 14px;
    color: #4c4c4c;
    font-weight: bold;
    line-height: 40px;
    margin: 0;
}

.apply-job .job-tr .tr-cont input[type=text] {
    line-height: 38px;
    font-size: 14px;
    color: #333;
    width: 100%;
    display: block;
    padding: 0 10px;
    height: 38px;
    border: 1px solid #e6e6e6;
}

.apply-job .job-tr .tr-cont input[name='captcha'] {
    font-size: 14px;
    line-height: 38px;
    color: #333;
    width: 80px;
    float: left;
}

.apply-job .job-tr .tr-cont .verify {
    cursor: pointer;
    float: left;
    width: 110px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0;
}

.apply-job .job-tr .tr-cont .verify img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.apply-job .job-tr .tr-cont textarea {
    font-size: 14px;
    color: #333;
    display: block;
    height: 170px;
    line-height: 20px;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid #e6e6e6;
}

.apply-job .job-tr .tr-cont.radio-cont {
    line-height: 40px;
}

.apply-job .job-tr .tr-cont.radio-cont input[type=radio] {
    margin-right: 10px;
}

.apply-job .job-tr .tr-cont.radio-cont label {
    margin-right: 30px;
    color: #4c4c4c;
    font-weight: bold;
}

.apply-job .job-tr .tr-cont a.submit {
    display: inline-block;
    width: 190px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #237ed2;
    color: #fff;
    font-size: 15px;
}

.apply-job .job-tr .tr-cont a.submit:hover {
    background: #0058b1;
}

/* 无内容 */
.no-goods,
.no-network {
    padding-top: 100px;
    overflow: hidden;
    text-align: center;
}

.no-goods img {
    display: block;
    margin: 0 auto 30px;
    width: 220px;
    max-height: 105px;
}

.no-network img {
    display: block;
    margin: 0 auto 30px;
    width: 222px;
    height: 160px;
}

.no-goods p,
.no-network p {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
}