@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: #333333;
    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: #3f444d;
    --second_color: #eb3434;
    --base_bg_color: #eb3434;
    --second_bg_color: #eb3434;
}

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

.base_color.light {
    color: #808693 !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;
}

.duration {
    transition: all 0.3s;
}

.duration_lg {
    transition: all 0.5s;
}

.duration_xl {
    transition: all 0.8s;
}

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

.hover_second_color:hover,
.hover_second_color:hover * {
    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: -3px;
    transition: all 0.3s;
}

.f_n_line.hover_line:after { bottom: 0 !important; }

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

.hover_line_center:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.hover_shadow-lg:hover {
    box-shadow: 0 0 15px rgba(100, 100, 100, 0.3);
}

.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_color:hover {
    color: var(--base_color) !important;
}

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

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

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

.hover_base_bg:hover .line {
    width: 80%;
}

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

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

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

.hover_second_border:hover {
    border: 1px solid var(--second_color) !important;
}

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

.hover_second_bg_border:hover {
    background-color: var(--second_color) !important;
    color: #fff !important;
    border: 1px solid var(--second_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(100%);
    transition: all 0.3s;
}

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

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

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

/* -------extend-border" 伪类begin---------- */
.hover-effect::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1)
}

.hover-effect::after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0)
}

.hover-effect::before,
.hover-effect::after {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    z-index: 2
}


.hover-effect:hover::before,
.hover-effect:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.hover-effect>div {
    opacity: 0;
    transition: all 0.3s;
}

.hover-effect:hover>div {
    opacity: 1;
}


/* -------extend-border" 伪类end---------- */

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

p {
    margin: 0;
    padding: 0;
}

a,
botton {
    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;
}

#baguetteBox-overlay .full-image img {
    background-color: #ffffff;
}

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_3_1:after {
    margin-top: 33.3333%;
}

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

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

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

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

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

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

.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_430_219:after {
    margin-top: 50.93%;
}

.imgbox_956_536:after {
    margin-top: 57.265%;
}

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

.imgbox_222_108:after {
    margin-top: 48.65%;
}

.imgbox_1000_667:after {
    margin-top: 66.7%;
}

.imgbox_695_450:after {
    margin-top: 64.75%;
}

.imgbox_752_622 {
    margin-top: 82.71%;
}

.linear {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 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 0.3s;
}

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

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

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


.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;
}

.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;
}

.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;
}

.col-2_5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.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: #333333;
}

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

.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;
}


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

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

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

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

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

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.my-20 {
    margin-top: 20px !important;
    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;
}

.scrolling::-webkit-scrollbar {
    display: none;
}

.table-responsive { margin-bottom: 20px; }

.table-responsive::-webkit-scrollbar {
    /* 滚动条宽度和高度 */
    width: 74px;
    height: 5px;
}

.table-responsive::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background: var(--second_color);
}

.table-responsive::-webkit-scrollbar-track-piece {
    /*滚动条里面轨道*/
    background-color: #efefef;
}


.line {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    transition: all 0.3s;
    opacity: 1;
}

.lineT_3 {
    border-left: 3px solid var(--second_color);
    padding-left: 10px;
}

.lineT_5 {
    border-left: 5px solid var(--second_color);
    padding-left: 10px;
}

/*菱形*/
.diamond {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    position: relative;
}

.diamond:after {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    border: 3px solid var(--base_color);
    transform: rotate(45deg);
    content: "";
    transition: all 0.3s;
    z-index: 0;
}

.diamond:hover:after {
    background-color: var(--second_color);
    border-color: var(--second_color);
    transform: rotate(0deg);
}

.diamond i {
    transition: all 0.3s;
    color: var(--base_color);
}

.diamond:hover i {
    color: #fff !important;
}

/*梯形*/
.tixing:after {
    content: '';
    display: block;
    width: 120%;
    height: 100%;
    position: absolute;
    transform: skewX(30deg);
    background-color: rgba(53, 152, 166, 0.95);
    top: 0;
    left: -24%;
    z-index: 0;
}

/*三角形*/
.sanjiao1 {
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-left-color: #fff;
    border-bottom-color: #fff;
    left: 0;
    bottom: 0;
    z-index: 2;
    position: absolute;
}

.sanjiao2 {
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-left-color: var(--second_color);
    border-bottom-color: var(--second_color);
    left: 5px;
    bottom: 5px;
    z-index: 2;
    position: absolute;
}

.sanjiao2 i {
    transform: translate(-20px, 10px);
}

.w-0 {
    width: 0;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.hover_show:hover .hide {
    display: block;
}


.content_gd {
    max-height: 280px;
    overflow-y: scroll;
}

.content_gd::-webkit-scrollbar {
    /* 滚动条宽度和高度 */
    width: 3px;
    height: 74px;
}

.content_gd::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background: var(--second_color);
}

.content_gd::-webkit-scrollbar-track-piece {
    /*滚动条里面轨道*/
    background-color: #ffffff;
}

/*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

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

#name_box_w {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    height: 60px;
    background-color: rgba(15, 15, 15, 1);
    transition: all 0.3s;
}


/*nav*/

#name_box_w.fixed {
    position: fixed;
    background-color: rgba(15, 15, 15, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    height: 60px;
}

#header_logo { max-width: calc(100% - 110px); }


.navI>li>a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 60px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.navI>li:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 4px;
    background: var(--second_color);
    content: '';
    transition: all .3s ease;
}

.navI>li:hover:after,
.navI li.active:after {
    width: 60%;
}

.navI>li .children {
    width: 512px;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.navI>li:hover .children {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    top: 60px;
}

.children>li>a {
    color: #4f4f4f;
}

.children>a:hover,
.children>a.active {
    color: var(--base_color);
}


/**/

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

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

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


#location,
#location a,
    {
    color: #666666;
}

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

/*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%);
}

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

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

.mouse_down {
    bottom: 0;
    left: 0;
    z-index: 2;
}

.mouse_down_dot {
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: arrow 1.5s cubic-bezier(0.5, 0, 0.1, 0.8) infinite;
}

.arrow:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

@keyframes arrow {

    %0,
    %100 {
        margin-top: 0;
        opacity: 1;
    }

    50% {
        margin-top: 10px;
        opacity: 1;
    }
}

@-webkit-keyframes arrow {

    %0,
    %100 {
        margin-top: 0;
        opacity: 1;
    }

    50% {
        margin-top: 10px;
        opacity: 1;
    }
}

/*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;
}

/*Index*/

.pics_type li a.active {
    color: #fff !important;
    background-color: var(--base_color) !important;
}

/* Footer
----------------------------------------*/

.page-footer {
    background: url('../images/footer_bg.jpg') center no-repeat;
    background-size: cover;
}

.page-footer,
.page-footer a {
    color: rgba(255, 255, 255, 0.4);
}


.text-white-op4 {
    color: rgba(255, 255, 255, 0.4);
}


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

#footer_copy {
    color: #383c3d;
}

#footer_copy a {
    color: #383c3d;
}

#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;
}


.de-contact .contact-list {
    border: 1px solid #efefef !important;
    background: #fafafa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.de-contact .contact-list ul li div {
    padding-left: 60px;
    color: #595959;
    padding: 15px 15px 15px 60px;
    border-radius: 5px;
}

.de-contact .contact-list ul li div.icon-01 {
    background: url(../images/contact-icon-01.png) no-repeat 10px 10px #fff;
}

.de-contact .contact-list ul li div.icon-02 {
    background: url(../images/contact-icon-02.png) no-repeat 10px 10px #fff;
}

.de-contact .contact-list ul li div.icon-03 {
    background: url(../images/contact-icon-03.png) no-repeat 10px 10px #fff;
}

.de-contact .contact-list ul li div.icon-04 {
    background: url(../images/contact-icon-04.png) no-repeat 10px 10px #fff;
}

.de-contact .contact-list ul li div.icon-05 {
    background: url(../images/contact-icon-05.png) no-repeat 10px 10px #fff;
}

.de-contact .contact-list ul li div.icon-06 {
    background: url(../images/contact-icon-06.png) no-repeat 10px 10px #fff;
}


.de-job-list {
    overflow: hidden;
    padding-bottom: 19px;
    min-height: 300px;
    padding: 5px 5px;
}

.de-job-list ul li {
    overflow: hidden;
    padding: 20px;
    /*height: 188px;*/
    border: 1px solid #ededed;
}

.de-job-list ul li .job-title {
    float: left;
    width: 50%;
    margin-right: 10px;
}

.de-job-list ul li .job-title h3 {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 15px;
}

.de-job-list ul li .job-title p {
    font-size: 18px;
    color: #237ed2;
    line-height: 20px;
    font-weight: bold;
}

.de-job-list ul li .job-title p em {
    font-weight: normal;
    font-size: 12px;
}

.de-job-list ul li .job-info {
    float: left;
    width: 200px;
}

.de-job-list ul li .job-info p {
    font-size: 15px;
    color: #b2b2b2;
    line-height: 20px;
    margin-bottom: 15px;
}

.de-job-list ul li .job-info p span {
    color: #737373;
}

.de-job-list ul li .job-btn {
    float: right;
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #237ed2;
    margin-top: 20px;
}

.de-job-list ul li:hover {
    box-shadow: 0 0 4px 2px rgba(104, 104, 104, 0.1);
}

.de-job-list ul li:hover .job-btn {
    background: #000;
}

.de-job-list ul li:hover .job-btn {
    display: block;
}

.jobs-info {
    padding: 40px 10px 30px;
    margin-bottom: 28px;
    border-bottom: 1px dashed #ededed;
}

.jobs-info .h3 {
    overflow: hidden;
    margin-bottom: 15px;
}

.jobs-info .h3 .job-name {
    float: left;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    width: 70%;
}

.jobs-info .h3 .job-price {
    float: right;
    font-weight: bold;
    font-size: 24px;
    color: #237ed2;
    line-height: 1.1;
    max-width: 360px;
}

.jobs-info .h3 .job-price em {
    font-weight: normal;
    font-size: 16px;
}

.jobs-info .p {
    font-size: 16px;
    color: #999999;
    line-height: 20px;
    margin-bottom: 10px;
}

.jobs-info .p span {
    color: #595959;
}

.jobs-info .btnn {
    padding-top: 10px;
    overflow: hidden;
}

.jobs-info .btnn a {
    display: inline-block;
    width: 230px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    color: #fff;
    background: #237ed2;
    font-size: 14px;
}

.jobs-info .btnn a:hover {
    background: #0058b1;
}

.jobs-info-content {
    padding: 0 20px;
    overflow: hidden;
}

.jobs-info-content h3 {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 10px;
}

.jobs-info-content p {
    font-size: 14px;
    color: #333;
    line-height: 24px;
}

.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: 100px;
    float: left;
    margin-right: 30px;
}

.apply-job .job-tr .tr-cont .verify {
    cursor: pointer;
    float: left;
    width: 120px;
    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;
}

.case_gd .swiper-button-prev,
.case_gd .swiper-button-next {
    width: 35px !important;
    height: 25px !important;
    margin-top: 0;
    background-size: 10px !important;
    z-index: 1;
}

.case_gd .swiper-button-prev {
    background-color: #a8a8a8;
}

.case_gd .swiper-button-next {
    background-color: var(--base_color);
}

.case_gd .swiper-button-prev,
.case_gd .swiper-button-next {
    width: 35px !important;
    height: 25px !important;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
}

.case_gd .swiper-button-prev {
    right: 37px;
}

.case_gd .triangle {
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--base_color);
    border-left: 10px solid transparent;
    left: auto;
    right: 20px;
    top: auto;
    bottom: 0;
}

.case_gd_prev.swiper-button-disabled:hover,.case_gd_next.swiper-button-disabled:hover { opacity: 0.5; border: 1px solid #babfc8 !important; color: #babfc8 !important; background-color: transparent !important;}

/*NEWS*/
.news_cont {
    height: 40px;
    line-height: 20px;
}

.pro_cont {
    height: 60px;
    line-height: 20px;
}

/*index*/

.in_title.in_title_bg {
    height: 58px;
    background: url('../images/index/title_bg.png') center no-repeat;
    background-size: auto 58px;
    transition: all 0.3s;
}


#in_box1 {
    background: url('../images/index/product_bg.jpg') top center no-repeat;
    background-size: auto 220px;
}

#in_box2 {
    background: url('../images/index/scsl_bg.jpg') center no-repeat;
    background-size: cover;
    height: 200px;
}

#in_box3 {
    background: url('../images/index/gsjj_bg.jpg') center no-repeat;
    background-size: cover;
}

#in_box4 {
    background: url('../images/index/honor_bg.jpg') center no-repeat;
    background-size: cover;
}

#in_box6 {
    background: url('../images/index/message_bg.jpg') center no-repeat;
    background-size: cover;
}



.in_type_list ul {
    position: relative;
    right: -3px;
}

.in_type_list li {
    background-color: #e8ebf0;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}


.in_type_list a.active {
    background-color: var(--second_color) !important;
    color: #fff !important;
}

.in_type_list a.active p {
    color: #fff !important;
}



.in_type_list li a p {
    color: #747e8e;
    z-index: 1;
}


.in_type_list li .bg-img {
    top: 0;
    left: 0;
    z-index: 0;
    transition: all 0.3s;
}

.in_type_list li .bg-img img {
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.5s;
}

.in_type_list li:hover {
    background-color: #262c38;
}

.in_type_list li:hover p {
    color: #ffffff;
}

.in_type_list li:hover .bg-img {
    background-color: #262c38;
    top: 0;
    left: 0;
    z-index: 0;
}

.in_type_list li:hover .bg-img img {
    opacity: 0.3;
    transform: scale(1);
}


.gd_control .item {
    position: relative;
    overflow: hidden;
}

.gd_control .item a {
    width: 30px;
    height: 30px;
}


.gd_control .item:before,
.gd_control .item:after {
    position: absolute;
    top: 50%;
}


.gd_control .item:before {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #e7e6e6;
    left: 0%;
    transform: translateX(-25px);
}

.gd_control .item:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    right: 0%;
    transform: translateX(25px);
    background-color: #e7e6e6;
}

.gd_control .item.gd_prev:before {
    display: none;
}


.gd_control .item.gd_next:after {
    display: none;
}

.best_type .icon,
.case_gd_control .icon {
    width: 40px;
    height: 40px;
}


.honor_gd .gd_control .item:before,
.honor_gd .gd_control .item:after {
    background-color: #666666 !important;
}


#single .honor_gd .gd_control .item:before,
#single .honor_gd .gd_control .item:after {
    background-color: #dddddd !important;
}

#index .goods_type_gd .gd_prev.swiper-button-disabled:hover .swiper_prev *,#index .goods_type_gd .gd_next.swiper-button-disabled:hover .swiper_next * { color: rgba(0, 0, 0, 0.2) !important; }
#index .honor_gd .gd_prev.swiper-button-disabled:hover .swiper_prev *,#index .honor_gd .gd_next.swiper-button-disabled:hover .swiper_next * { color: rgba(255, 255, 255, 0.2) !important; }
#single .honor_gd .gd_prev.swiper-button-disabled:hover .swiper_prev *,#single .honor_gd .gd_next.swiper-button-disabled:hover .swiper_next * { color: rgba(0, 0, 0, 0.2) !important; }


.more {
    background-color: #e8ebf0;
}

.page_more {

}


#single #box4 {
    background: url('../images/company/map.jpg') center no-repeat;
    background-size: 100% auto;
}

#proinfo #box1 {
    background: linear-gradient(to top, #f5f7f9, #ffffff);
    border-bottom: 2px solid #cc3333;
}

#proinfo #box2 {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s;
}

#proinfo #box2.fixed {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    top: 60px;
}


#proinfo #box2.fixed .pro_t {
    font-size: 1.6rem;
}
#proinfo #box2.fixed .pro_n {
    font-size: 1.4rem;
}