@charset "utf-8";

html {
    font-size: 62.5%;
    /*10 ÷ 16 × 100% = 62.5%*/
}

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;
    overflow-x: hidden;
}

body#index main {
    margin-bottom: 0 !important;
}

main {
    margin-bottom: 0;
}

footer {
    margin-bottom: 60px;
}

:root {
    --prop: 1;
    --base_color: #0072bc;
}

.base_color {
    color: #0072bc !important;
}

.base_bg {
    background-color: var(--base_color);
}

.base_gradient {
    background-color: var(--base_color) !important;
    background-image: linear-gradient(to left, #00a8e6, var(--base_color));
    color: #fff !important;
}


.base_gradient:hover {
    background-color: orange !important;
    background-image: linear-gradient(to left, orange, #c75000);
    color: #fff !important;
}


.hover_color_orange:hover {
    color: orange !important;
}

.hover_color:hover {
    color: var(--base_color) !important;
}

.hover:hover {
    background-color: var(--base_color) !important;
    background-image: linear-gradient(to left, #00a8e6, var(--base_color));
    color: #fff !important;
}

.hover:hover * {
    color: #fff !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_orange:hover {
    background-color: #ff9000 !important;
    color: #fff !important;
}

.hover_orange:hover * {
    color: #fff !important;
}

.hover_orange:hover .title:after {
    background-color: #fff !important;
}

.hover_orange_border:hover {
    background-color: #ff9000 !important;
    color: #fff !important;
    border: 1px solid #ff9000 !important;
}


.hover_gradient:hover {
    background-image: -webkit-linear-gradient(bottom, #bbd401 60%, #bbd401 50%, #ffffff 70%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: pulsate 3s infinite;
}


@keyframes pulsate {
    50% {
        background-position: 0 180px;
    }
}


p {
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.3s;
}

a:link {
    color: #333333;
    text-decoration: none
}

a:visited {
    color: #333333;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:focus {
    outline: none;
    -moz-outline: none;
}


img {
    border: 0px;
}

.img-fluid {
    max-height: 100%;
}

input,
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;
}

.imgbox {
    position: relative;
    overflow: hidden;
}

.imgbox:after {
    content: '';
    display: block;
}

.imgbox img,
.imgbox video,
.imgbox div.contbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imgbox_4_3,
.imgbox_1_1 {
    background: #fff;
}

.imgbox_3_1:after {
    margin-top: 33.3333%;
}

.imgbox_5_2:after {
    margin-top: 40%;
}

.imgbox_2_1:after {
    margin-top: 50%;
}

.imgbox_600_345:after {
    margin-top: 57.5%;
}

.imgbox_5_3:after {
    margin-top: 60%;
}

.imgbox_200_127:after {
    margin-top: 63.5%;
}

.imgbox_440_271:after {
    margin-top: 61.59%;
}

.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;
}


.reflect {
    -webkit-box-reflect: below 0px -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    position: relative;
}


.valign-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.valign-wrapper .fluid-img {
    margin: 0 auto !important;
}

.ImgScale img,
.ImgScale i {
    transition: all 0.3s;
}

.ImgScale:hover img,
.ImgScale:hover i {
    transform: translate(-50%, -50%) scale(1.05);
}

.IScale i,
.IScale img {
    transition: all 0.3s;
}

.IScale:hover i,
.IScale:hover img {
    transform: translate(-50%, -50%) rotateY(180deg);
}

.rotateY:before {
    transform: rotateY(180deg);
}

.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-40 {
    font-size: 4.0rem;
}

.fs-60 {
    font-size: 6.0rem;
}

.op6 {
    opacity: 0.6;
}

.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 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;}

/*PAGE

----------------------------------------*/
.de-page-mian {
    overflow: hidden;
    text-align: center;
    font-size: 0;
    margin: 10px 0 35px;
}

.de-page-mian .page-inner {
    display: inline-block;
    overflow: hidden;
}

.de-page-mian .page-inner a {
    display: block;
    float: left;
    min-width: 26px;
    padding: 0 5px;
    height: 36px;
    border: 1px solid #dddddd;
    background: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    color: #333;
    margin-right: -1px;
    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-right: 10px;
    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 {
    margin-left: 10px;
    margin-right: 15px;
    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: 12px;
    margin-right: 0;
    width: 63px;
    margin-left: 10px;
}

.de-page-mian .page-inner span {
    display: block;
    font-size: 12px;
    color: #333;
    float: left;
    line-height: 38px;
}

.de-page-mian .page-inner input {
    display: block;
    float: left;
    height: 36px;
    width: 36px;
    border: 1px solid #dddddd;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    color: #333;
    margin: 0 5px;
}

.prev_next li .box {
    border: 1px dotted #ccc;
}

/* Header

----------------------------------------*/

nav .nav li > a {
    color: #444;
    height: 100px;
    line-height: 100px;
    font-size: 1.6rem;
    padding: 0;
    display: block;
    transition: all 0.3s;
}


nav .nav li:after {
    content: "|";
    color: #c3c3c3;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


nav .nav li#nav_last:after {
    display: none;
}


nav .nav li>a:after {
    display: block;
    margin: 0 auto;
    margin-top: -3px;
    width: 0;
    height: 3px;
    background: var(--base_color);
    content: '';
    transition: all .3s ease
}

nav .nav li:hover>a:after {
    width: 100%
}

nav .nav li.active>a:after {
    display: block;
    margin: 0 auto;
    margin-top: -3px;
    width: 100%;
    height: 3px;
    background: var(--base_color);
    content: '';
    transition: all .3s ease
}

nav .nav li .nav-erji{
    width: 525px;
    height: 290px;
    background: #fff;
    padding: 28px;
    position: absolute;
    top: 111px;
    left: -45px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

nav .nav li:nth-child(4) .nav-erji{
    left: -165px;
}

nav .nav li:nth-child(5) .nav-erji{
    left: -365px;
}


.nav-erji-l{
    width: 30%;
    float: left;
}
.nav-erji-l a{
    color: #4f4f4f;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid #e8e8e8;
    line-height: 40px;
    text-indent:20px;
    text-align: left;
}
.nav-erji-l a:hover,.nav-erji-l a.active {
    color: #01a1e9;
}
.nav-erji-r{
    width: 67%;
    float: right;
}
.nav-erji-r img{
    max-width: 100%;
}
nav .nav li:hover .nav-erji{
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    top: 101px;
}


.drop_btn {
    cursor: pointer;
    line-height: 30px;
}

.drop_btn .box {
    min-width: 100%;
    height: 0;
    transition: all 0.3s;
    overflow: hidden;
    top: 40px;
    left: 0;
    z-index: 2;
}

.drop_btn:hover .box {
    transform: translateY(5px);
}

.top_drop li:nth-child(1) .drop_btn:hover .box {
    width: 200px;
    height: 50px;
    line-height: 50px;
}

.top_drop li:nth-child(2) .drop_btn:hover .box {
    width: 130px;
    height: 130px;
}

.top_drop li:nth-child(3) .drop_btn:hover .box {
    width: 130px;
    height: 50px;
    line-height: 50px;
}

.top_drop li:nth-child(4) .drop_btn:hover .box {
    width: 130px;
}


.subNav { height:  50px; line-height: 50px; white-space:nowrap;overflow-y:hidden;-webkit-overflow-scrolling:touch;}


.subNav a {
    position: relative;
}

.subNav a:hover.subNav a.active {
    color: #f7ea0f
}

.subNav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 5px;
    background-color: #f7ea0f;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    opacity: 0;
}

.subNav a:hover:after,
.subNav a.active:after {
    width: 100%;
    opacity: 1;
}

.location a {
    color: #fff;
}

/*NAV*/


/*Banner*/
.flash .swiper-slide img {
    transition: 1s linear 2s;
}

.flash .swiper-slide-active img,
.flash .swiper-slide-duplicate-active img {
    transition: 16s linear;
    transform: scale(1.2, 1.2);
}


.flash .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}


/*Index*/

#video_box iframe,
#video_box video {
    width: 100% !important;
    height: 100% !important;
    min-height: 226px;
}


.lsx_shadow {
    position: relative;
}

.lsx_shadow img,
.lsx_shadow iframe,
.lsx_shadow video {
    position: relative;
    z-index: 1;
}

.lsx_shadow:after {
    content: "";
    display: block;
    width: 275px;
    height: 113px;
    /*background: var(--base_color);*/
    position: absolute;
    left: -47px;
    bottom: -26px;
    z-index: 0;
}


#in_box5 .more {
    width: 225px;
    height: 55px;
    line-height: 55px;
}

/*ABOUT*/

.swiper-father {
    padding: 1rem 50px;
}

/*HONOR*/

.lsx_shadow_1:before {
    content: "";
    display: block;
    width: 80%;
    height: 10%;
    background: #00a6e4;
    position: absolute;
    left: 6px;
    bottom: -4px;
    z-index: 0;
}

.line { width: 20px; }

/* Footer
----------------------------------------*/

.page-footer,
.page-footer a {
    color: #89c8f1;
}

.page-footer a:hover {
    color: #bbd401 !important;
}


.page-footer dt,
.page-footer dt a {
    color: #ffffff;
}


.page-footer dd,
.page-footer dd a {
    color: #89c8f1;
}

.page-footer dt {
    font-weight: normal;
}



/*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;
}


#dituContent {
    width: 100%;
    height: 300px;
    margin: 0 auto 30px;
    border: 1px dotted #ccc;
    border-radius: 10px;
}

.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;
}
