@charset "utf-8";
:root {
    --main_color: #2184c6;
    /* 主色 */
    --main_color_rgb: 3, 92, 172;
    /*rgba*/
    --main_color_dark: #0d73c4;
    /* 主色-深 */
    --main_color_tint: #afdcf8;
    /* 主色-浅 */
    --main_color_other: #091b27;
    /* 主色-其他 */
    --second_color: #ff4444;
    /* 副色 */
    --bg_gray: #f3f3f3;
    /* 灰色背景 */
    --module_gap_xl: 1rem;
    /* 模块间隔-超级 */
    --module_gap_x: .75rem;
    /* 模块间隔-大 */
    --module_gap_m: .5rem;
    /* 模块间隔-中 */
    --module_gap_s: .25rem;
    /* 模块间隔-小 */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
p,
form,
img,
select {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font: 14px "PingFang SC Regular", "Microsoft Yahei", "微软雅黑", "Arial", "Helvetica", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: var(--main_color);
}

img,
ul,
li,
em {
    border: none;
    list-style: none;
    font-style: normal;
}

input,
form,
textarea {
    font-family: "微软雅黑", "Microsoft YaHei";
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.main {
    width: 90%;
    margin: auto;
    min-width: 1200px;
}


/*滚动条美化*/

body::-webkit-scrollbar {
    width: 10px !important;
}

body::-webkit-scrollbar-track {
    background-color: #f3f3f3;
}

body::-webkit-scrollbar-track-piece {
    background-color: #f3f3f3;
    -webkit-border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border: solid 1px #C0C0C0;
    border-radius: 4px;
}

body::-webkit-scrollbar-corner {
    background-color: #ddd;
}

body::-webkit-resizer {
    background-repeat: no-repeat;
    background-position: bottom right;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #F3F3E0;
}

::-webkit-scrollbar {
    width: 15px;
}


/*图片放大*/

.picShow img:hover,
.picShow a:hover img {
    transition: all 300ms ease-out 0s;
    cursor: pointer;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.picShow img {
    transition: all 300ms ease-out 0s;
}

.flex_space {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex_start {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.t_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.t_left_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*文字省略*/

.ellipsis1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.ellipsis3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 头部导航 */

.header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transition: 0.5s all;
    z-index: 999;
}

.header:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transition: 2s
}

.header.on:before {
    width: 0%
}

.header_news {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0);
    border-bottom: solid 1px #ebeef4;
}


/*LOGO*/

.header .logo {
    margin-left: 2%;
}

.header .logo img {
    display: block;
    transition: 0.5s all;
    filter: grayscale(100%) brightness(1000%);
}


/*menu*/

.header .menu {
    margin-right: 5px;
}

.header .menu li {
    line-height: 100px;
}

.header .menu li a {
    display: block;
    margin: 0 .15rem;
    font-size: .15rem;
    color: #fff;
    position: relative;
    transition: 0.5s all;
}

.header .menu li a:hover
/*, .header .menu li.currclass a */

{
    color: var(--main_color);
}

.header .menu li.curr>a .bg {
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -9px;
    border-radius: 20px;
    bottom: 25px;
    width: 18px;
    display: block;
    height: 3px;
    transition: 0.5s;
}


/*======================菜单按钮======================*/

.nav_btn {
    width: 90px;
    transition: 0.5s;
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none;
    background: none;
    position: relative;
    z-index: 999;
}

.nav_btn .line {
    position: relative;
    display: block;
    width: 15px;
    height: 2px;
    margin: 0px auto 0;
    background: #fff;
    border-radius: 3px;
}

.nav_btn .line:before,
.nav_btn .line:after {
    content: '';
    width: 100%;
    height: 2px;
    right: 0;
    position: absolute;
    background: #fff;
    border-radius: 3px;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.1s, 0s;
}

.nav_btn .line:before {
    transition-property: bottom, transform;
    bottom: 10px;
    animation: long 2s linear infinite
}

.nav_btn .line:after {
    transition-property: top, transform;
    top: 10px;
    animation: long 3s linear infinite
}

.nav_btn_active .line {
    background: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s
}

.nav_btn_active .line:after,
.nav_btn_active .line:before {
    -webkit-transition-delay: 0s, .1s;
    -moz-transition-delay: 0s, .1s;
    -ms-transition-delay: 0s, .1s;
    -o-transition-delay: 0s, .1s;
    transition-delay: 0s, .1s;
    animation: none;
}

.nav_btn_active .line:before {
    bottom: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.nav_btn_active .line:after {
    top: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@keyframes long {
    0% {
        width: 0
    }
    25% {
        width: 100%
    }
    50% {
        width: 150%
    }
    75% {
        width: 100%
    }
    to {
        width: 0
    }
}


/*======================搜索======================*/

.header .top_serch {
    width: .6rem;
    transition: 0.5s all;
    position: relative;
    margin-right: 15px;
}

.header .top_serch a {
    height: 100%;
}

.header .top_serch a svg {
    width: 16px;
    fill: #fff;
    transition: 0.5s all;
}

.header .top_serch a:hover svg {
    transform: scale(1.2);
}

.header .top_serch:after {
    content: "|";
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: 0.5s all;
}

.header .tc {
    transition: all ease 300ms;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header .tc {
    pointer-events: none;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transform: scale(1.1);
}

.header .tc.act {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.header .tc-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.header .tc-box {
    width: 700px;
    max-width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    /* background:#fff; */
    display: block;
    position: relative;
    z-index: 1;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    overflow: hidden;
}

.header .tc.act .tc-box {
    -webkit-animation-name: anim-open-2;
    animation-name: anim-open-2;
    transform: scale(1);
}


/*搜索弹窗内容样式*/

.header .tc-box form {
    position: relative;
}

.header .tc-box .tc_fdj {
    position: absolute;
    left: 20px;
    display: block;
    height: .75rem;
    width: 25px;
    background: url(../images/icon-sq2.png) center no-repeat;
}

.header .tc-box #keyword {
    width: 80%;
    height: .75rem;
    padding: 0 15px;
    padding-left: 55px;
    font-size: .18rem;
    color: #999;
    box-shadow: none;
    -webkit-appearance: none;
    border: 0;
    box-sizing: border-box;
    outline: none;
    float: left;
}

.header .tc-box .btn_submit {
    width: 20%;
    height: .75rem;
    line-height: .75rem;
    background: var(--main_color);
    font-size: .2rem;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border: 0;
    outline: none;
}

.header .tel {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    margin-right: .3rem;
}

.header_scroll {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.header_scroll .logo img {
    filter: grayscale(0) brightness(100%);
}

.header_scroll .menu li {
    line-height: 80px;
}

.header_scroll .menu li a {
    color: #333;
}

.header_scroll .menu li.curr>a .bg {
    background: var(--main_color);
    bottom: 18px;
}

.header_scroll .top_serch a svg {
    fill: #999;
}

.header_scroll .top_serch:after {
    color: rgba(0, 0, 0, 0.25);
}

.header_scroll .tel {
    color: var(--main_color);
}

.header_scroll .line,
.header_scroll .line:before,
.header_scroll .line:after {
    background: #111;
}

.header_scroll .nav_btn_active .line {
    background: transparent;
}

.container01 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


/*======================轮播图======================*/

#banner {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 0;
    overflow: hidden;
    min-width: 1200px;
}

#banner li .bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#banner li .bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#banner li .pic {
    width: 100%;
    height: 100%;
    z-index: 8;
}

#banner li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#banner li.swiper-slide-active .pic {
    animation: bgscale 6s linear forwards;
    -webkit-animation: bgscale 6s linear forwards;
}

@-webkit-keyframes bgscale {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

@keyframes bgscale {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

#banner .txt {
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px;
    opacity: 0;
    transform: translateY(-100px);
    transition: .8s;
}

#banner li.swiper-slide-active .txt {
    opacity: 1;
    animation: enter 1.3s ease forwards;
    -webkit-animation: enter 1.3s ease forwards;
}

@-webkit-keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }
    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

@keyframes enter {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }
    20% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}

#banner .txt h3 {
    font-size: .6rem;
    color: #fff;
    margin-bottom: .25rem;
    letter-spacing: 1px;
}

#banner .txt h5 {
    font-size: .35rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: lighter;
    letter-spacing: 6px;
}


/*按钮切换*/

.swiper-ctrl {
    position: absolute;
    right: 3%;
    bottom: 5%;
    width: 200px;
    z-index: 11;
}

.swiper-ctrl .relative {
    position: relative;
}

#banner .swiper-pagination {
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    bottom: auto;
    margin-top: -11px;
    color: #fff;
    font-size: 16px;
    font-family: 'roboto_l', Arial, Helvetica;
}

#banner .swiper-pagination span {
    color: #fff;
    font-size: 16px;
    opacity: .5;
}

#banner .swiper-pagination .swiper-pagination-current {
    color: #fff;
    opacity: 1;
}

#banner .swiper-button-next,
#banner .swiper-button-prev {
    position: absolute;
    left: auto;
    right: auto;
    width: 45px;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    line-height: 44px;
    opacity: .5;
}

#banner .swiper-button-next:hover,
#banner .swiper-button-prev:hover {
    opacity: 1;
}

#banner .swiper-button-next {
    background: url('../images/ban_next.png') right center no-repeat;
    right: 0;
}

#banner .swiper-button-prev {
    background: url('../images/ban_prev.png') left center no-repeat;
    left: 0;
    text-align: right;
}


/*鼠标*/

#banner .mouse {
    position: absolute;
    width: 25px;
    left: 50%;
    margin-left: -12.5px;
    bottom: 25px;
    cursor: pointer;
    z-index: 10000;
    background: url(../images/shubiao.png) top center no-repeat;
    height: 60px;
    text-align: center
}

#banner .mouse span {
    -webkit-animation: arrowMove 2s infinite;
    animation: arrowMove 2s infinite;
    display: inline-block;
    width: 8px;
    height: 20px;
    position: absolute;
    margin-left: -4px;
    left: 50%;
    bottom: 0;
}

@-webkit-keyframes arrowMove {
    to {
        -webkit-transform: translateY(.15rem);
        transform: translateY(.15rem);
        opacity: 0;
    }
}

@keyframes arrowMove {
    to {
        -webkit-transform: translateY(.15rem);
        transform: translateY(.15rem);
        opacity: 0;
    }
}

#box1 {
    position: relative;
    top: -.6rem;
}

#banner .swiper-slide:after {
    content: "";
    background: url(../images/banenr_line.png) rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: .25;
    z-index: 3;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
}

#particles-js {
    opacity: 0.6;
}

.particles {
    pointer-events: none;
}

.mouseEvents {
    pointer-events: all;
}


/*-查看详情-*/

.up-graybox {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.4s ease 0s;
}

.up-graybox:hover {
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    transition: all 0.4s ease 0s;
}

.up-graybox .stitle {
    font-size: 14px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    color: #fff;
}

.up-graybox .line {
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #f2f2f2;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    transition: all 0.6s ease 0s;
}

.up-graybox .linet {
    top: 0;
}

.up-graybox .lineb {
    bottom: 0;
}

.up-graybox:hover .line {
    width: 6px;
    margin-left: -3px;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.section {
    position: relative;
    z-index: 1;
    background: #fff;
}


/*页面标题*/

.main_tit {
    text-align: center;
    padding: .6rem 0 .4rem;
    width: 100%;
    min-width: 1200px;
}

.main_tit h3 {
    font-size: .4rem;
    color: #000;
    font-weight: normal;
}

.main_tit .line {
    display: block;
    width: 20px;
    height: 4px;
    background: var(--main_color);
    border-radius: 10px;
    margin: 15px auto auto auto;
}

.main_tit p {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

.comm_desc {
    font-size: 16px;
    color: #666;
    margin-top: -10px;
    line-height: 2;
    text-align: center;
}

.main_tit.txt_left {
    text-align: left;
}

.mores {
    font-family: 'sheepsansbold';
    font-size: 16px;
    color: #000;
    background: url(../images/icon12.png) right center no-repeat;
    padding-right: 35px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
}

.mores:hover {
    background: url(../images/icon13.png) right center no-repeat;
}


/*======================业务服务======================*/

.section01 .tit {
    position: relative;
    padding-bottom: .4rem;
    padding-top: .7rem;
}

.section01 .tit .l {
    font-size: 70px;
    line-height: 70px;
    font-family: Helvetica;
    color: #000;
}

.section01 .tit .r {
    font-size: 70px;
    line-height: 70px;
    font-family: Helvetica;
    color: #000;
    display: table;
    position: absolute;
    right: 0;
    top: 125px;
}

.section01 .tit .r span {
    width: 300px;
    height: 2px;
    background: #222;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 65px;
}

.section01 .tit h3 {
    font-size: .4rem;
    line-height: 1;
    color: #000;
    margin-bottom: .25rem;
}

.section01 .tit .desc {
    width: 8rem;
    line-height: 2;
    color: #666;
}

.section01 ul {
    margin-top: .5rem;
}

.section01 li {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.section01 li a {
    display: block;
}

.section01 li .pic {
    width: 100%;
    overflow: hidden;
}

.section01 li .pic img {
    width: 100%;
    display: block;
    transition: all 2s;
}

.section01 li:hover .pic img {
    transform: scale(1.05);
}

.section01 li .txt {
    position: absolute;
    right: 35%;
    top: 50%;
    transform: translateY(-50%);
}

.section01 li .txt h3 {
    font-size: .25rem;
    color: #fff;
}

.section01 li .txt h3::after {
    content: "";
    display: block;
    width: .3rem;
    height: 2px;
    background: #FFFFFF;
    margin: .36rem 0;
}

.section01 li .txt p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    display: flex;
    align-items: center;
}

.section01 li .txt p::before {
    width: 8px;
    height: 8px;
    background: #ED5E49;
    border-radius: 50%;
    content: "";
    display: block;
    margin-right: 10px;
}

.mask_out {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    animation-timing-function: ease;
}


/*======================业务服务======================*/

.section02 .service li {
    width: calc(25% - 1px);
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 50px .5rem 50px .5rem;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.section02 .service li:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transform-origin: left center 0;
    transition: 0.5s;
    transform: rotateY(60deg);
    -webkit-transform: rotateY(60deg);
    -moz-transform: rotateY(60deg);
    background-image: linear-gradient(to right, #2184c6, var(--main_color));
}

.section02 .service li:hover:before {
    opacity: 1;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}

.section02 .service li a {
    position: relative;
    z-index: 1;
}

.section02 .service li .ico {
    height: 1rem;
    text-align: center;
}

.section02 .service li .ico img {
    display: inline-block;
    transition: 0.5s all;
}

.section02 .service li:hover .ico img {
    filter: grayscale(100%) brightness(1000%);
}

.section02 .service li .title {
    font-size: .22rem;
    color: #222;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 25px;
    transition: 0.5s all;
    text-align: center;
}

.section02 .service li:hover .title {
    color: #fff;
}

.section02 .service li .txt {
    color: #333;
    line-height: 2.6;
    transition: 0.5s all;
}

.section02 .service li .txt p {
    width: 50%;
    position: relative;
    padding-left: 12px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section02 .service li .txt p:after {
    content: '';
    display: block;
    position: absolute;
    width: 5px;
    height: 1px;
    background: #999;
    left: 0;
    top: 50%;
    transition: 0.5s all;
}

.section02 .service li:hover .txt p:after {
    background: #fff;
}

.section02 .service li:hover .txt {
    color: #fff;
}

.section02 .service li .link {
    width: 0;
    height: 10px;
    margin-top: 35px;
    background: url(../images/icon16.png) right center no-repeat;
    transition: 0.5s all;
}

.section02 .service li:hover .link {
    width: 48px;
}

.section02 .service .mask_out {
    background: #000;
}


/*======================我们的优势======================*/

.section04 {
    background: url(../images/index_bg3.jpg) no-repeat center fixed;
    background-size: cover;
    padding: .5rem 0 1rem;
    overflow: hidden;
    height: 4.6rem;
}

.section04 .main {
    position: relative;
    z-index: 9;
}

.section04 .desc {
    color: #fff;
    line-height: 2;
    text-align: center;
    font-size: 16px;
}

.section04 ul {
    text-align: center;
}

.section04 ul li {
    display: inline-block;
    margin: 1rem .5rem 0 .2rem;
    color: #fff;
    font-size: .16rem;
}

.section04 ul li svg {
    width: .68rem;
    fill: #fff;
    margin-bottom: .15rem;
}


/* 切换 */

.tabs1 {
    text-align: center;
}

.tabs1 li {
    display: inline-block;
    border: solid 1px #333;
    border-radius: 40px;
    margin: 0 5px;
    overflow: hidden;
    transition: .3s all;
}

.tabs1 li a {
    display: block;
    font-size: .16rem;
    line-height: 38px;
    color: #333;
    padding: 0 25px;
    transition: .3s all;
}

.tabs1 li.active {
    background: var(--main_color);
    border: solid 1px var(--main_color);
}

.tabs1 li.active a {
    color: #fff;
}

#tabs-container1 {
    overflow: hidden;
    padding: .5rem 0 1.5rem 0;
    box-sizing: border-box;
}


/*================首页新闻列表=====================*/

.index_news .box1 {
    width: 33%;
}

.index_news .box1 .pic {
    width: 100%;
    height: 3.4rem;
    overflow: hidden;
}

.index_news .box1 .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.index_news .box1 .txt {
    box-sizing: border-box;
    padding: 0 .3rem;
    height: 1.7rem;
    transition: 0.5s all;
    width: 100%;
    border: solid 1px #e8e8e8;
    border-top: 0;
}

.index_news .box1 .txt .time {
    color: #888;
    font-size: 12px;
    margin: .15rem 0;
}

.index_news .box1 .txt .tit {
    font-size: .2rem;
    color: #111;
    transition: 0.5s all;
}

.index_news .box1 .txt .desc {
    line-height: 1.8;
    color: #888;
    transition: 0.5s all;
}

.index_news .box2 {
    width: 65%;
    border-left: solid 1px #e8e8e8;
    border-top: solid 1px #e8e8e8;
}

.index_news .box2 li {
    box-sizing: border-box;
    padding: 0 .3rem;
    height: 1.7rem;
    transition: 0.5s all;
    width: 50%;
    border-right: solid 1px #e8e8e8;
    border-bottom: solid 1px #e8e8e8;
}

.index_news .box2 li:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, .2);
}

.index_news .box2 li .time {
    color: #888;
    font-size: 12px;
    margin: .15rem 0;
}

.index_news .box2 li .tit {
    font-size: .2rem;
    color: #111;
    transition: 0.5s all;
}

.index_news .box2 li .desc {
    line-height: 1.8;
    color: #888;
    transition: 0.5s all;
}

.index_news .lookmore {
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translate(-50%, 0);
}


/* 底部 */

.s_foot1 {
    background: url(../images/line_white.jpg) repeat-x center;
    position: relative;
    height: 4.3rem;
}

.s_foot1 .tit {
    font-size: .2rem;
    font-weight: 300;
    color: #fff;
}

.s_foot1 h5 {
    font-size: .4rem;
    font-weight: 300;
    margin: .25rem 0 .5rem 0;
    color: #fff;
    text-align: center;
}

.s_foot1 h5 .tel {
    font-size: .4rem;
    font-weight: 600;
    margin-top: .25rem;
}

.s_foot1 .btn a {
    width: 1.8rem;
    line-height: .56rem;
    border-radius: .56rem;
    padding-left: .45rem;
    box-sizing: border-box;
    display: block;
    font-weight: 300;
    box-sizing: border-box;
    background: url(../images/icoline.png) no-repeat .3rem center var(--main_color);
    color: #fff;
    font-size: .18rem;
    text-align: center;
    margin-right: .2rem;
}

.s_foot1 .btn a:last-child {
    background: url(../images/icedit.png) no-repeat .3rem center rgba(0, 0, 0, 0.8);
}

.footer {
    background: #181818;
}

.footer .box1 {
    padding: 35px 0 20px 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}

.footer .box1 .f_logo img {
    height: 42px;
}

.footer .box1 ul {
    line-height: 42px
}

.footer .box1 ul a {
    font-size: 16px;
    margin-left: .5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    transition: 0.3s all;
}

.footer .box1 ul a:hover {
    color: #fff;
}

.footer .box2 {
    padding: 40px 0 50px 0;
    border-bottom: 1px rgba(255, 255, 255, 0.05) solid;
}

.footer .box2 .f_tit {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.footer .box2 .f_tit i {
    display: inline-block;
    font-style: normal;
    width: 7px;
    height: 7px;
    border-radius: 3.5px;
    background: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    margin: 0 0.1rem;
}

.footer .box2 .f_tit:after {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--main_color);
    margin: 15px 0 25px 0;
    display: block;
}

.footer .box2 .f_about {
    width: 4.8rem;
}

.footer .box2 .f_about p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 2.2;
    text-align: justify;
}

.footer .box2 .f_weixin li {
    width: 115px;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.3);
}

.footer .box2 .f_weixin li img {
    width: 100%;
    border: solid 1px #e8e8e8;
    margin-bottom: 5px;
}

.footer .box2 .f_lianxi {
    width: 360px;
}

.footer .box2 .f_info {
    margin-top: 25px;
}

.footer .box2 .f_info .item {
    margin-bottom: 26px;
}

.footer .box2 .f_info .item:not(:first-child) {
    font-size: 16px;
}

.footer .box2 .f_info .ico {
    width: 30px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    height: 24px;
    box-sizing: border-box;
}

.footer .box2 .f_info .ico img {
    max-width: 100%;
}

.footer .box2 .f_info .txt {
    width: calc(100% - 34px);
    color: #fff;
    opacity: 0.5;
    line-height: 24px;
}

.footer .box2 .f_info .txt p a {
    position: relative;
    color: #fff;
}

.footer .box3 .footlink {
    padding: 25px 0;
    position: relative;
}

.footer .box3 .footlink_tit {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
}

.footer .box3 .footlink_tit p {
    width: 50px;
    height: 20px;
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 25px;
    cursor: pointer;
}

.footer .box3 .footlink_tit p:before {
    content: "展开";
}

.footer .box3 .footlink_tit p.active:before {
    content: "收起";
}

.footer .box3 .footlink_tit p i:before {
    transition: 0.5s all;
    transform: rotate(0deg);
}

.footer .box3 .footlink_tit p.active i:before {
    transform: rotate(180deg);
}

.footer .box3 .footlink ul {
    display: none;
    padding-top: 15px;
}

.footer .box3 .footlink ul a {
    margin-right: 15px;
    line-height: 2;
    display: inline-block;
    color: rgba(255, 255, 255, 0.68);
}

.copyright {
    background: #141414;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.25);
}


/*二级页面 banner*/

.page_ban {
    width: 100%;
    position: relative;
    min-width: 1200px;
    overflow: hidden;
    background: #000;
}

.page_ban .pic {
    animation: o-scale 20s linear infinite;
    height: 65vh;
}

.page_ban .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page_ban .txt {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    text-align: center;
}

.page_ban .txt h5 {
    font-size: .22rem;
    font-weight: lighter;
    color: #fff;
}

.page_ban .txt h3 {
    font-size: .5rem;
    color: #fff;
    margin-top: .25rem;
    font-weight: 600;
    line-height: 1.5;
}

.page_ban:before {
    content: "";
    background: rgba(0, 0, 0, .15) url(../images/header_bg.png) repeat-x left top -50px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

@keyframes o-upfade-top {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes o-scale {
    0%,
    85%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes o-opacity {
    0%,
    30%,
    60%,
    100% {
        opacity: 0;
    }
    15%,
    45% {
        opacity: 1;
    }
}

@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.page_box {
    width: 86%;
    max-width: 1600px;
    min-width: 1200px;
    margin: auto;
}

.bot_form {
    height: 120px;
    background: var(--main_color);
    min-width: 1200px;
}

.bot_form_left {
    float: left;
    line-height: 120px;
    font-size: 28px;
    color: #fff;
    width: 20%;
    text-align: center;
}

.bot_form_mid {
    float: left;
    padding-top: 45px;
    font-size: 18px;
    color: #fff;
    width: 50%;
    text-align: center;
}

.bot_form_mid span {
    margin-left: 10px;
}

.bot_form_mid input[type='text'] {
    width: 22%;
    height: 36px;
    line-height: 36px;
    border: solid 1px rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    background: none;
    color: #FFF;
    padding: 0 5px;
    font-size: 16px;
}

.bot_form_mid input[type='submit'] {
    width: 19%;
    height: 39px;
    border: 0;
    background: rgba(255, 255, 255, 0.3);
    font-family: "微软雅黑";
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.bot_form_right {
    float: right;
    line-height: 120px;
    font-size: 28px;
    color: #fff;
    width: 30%;
    text-align: center;
}

.bot_form_mid ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgba(255, 255, 255, 0.5);
}

.bot_form_mid :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.5);
}

.bot_form_mid ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
}

.bot_form_mid :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.5);
}

.page_more {
    text-align: center;
}

.page_more a {
    height: 40px;
    border: 1px solid #ccc;
    padding: 10px 25px;
    color: #333;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    transition: all .2s;
    margin: auto;
}

.page_more a:hover {
    background: var(--main_color);
    color: #fff;
    border-color: var(--main_color);
    opacity: .9;
}


/*网站建设*/

.web_service {
    margin-top: 20px;
}

.web_service li:first-child {
    border-left: 1px solid #ddd;
}

.web_service li {
    padding: 55px 2.5% 35px 2.5%;
    width: 25%;
    height: 420px;
    float: left;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-left: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    background: #fff;
}

.web_service li:hover {
    background: var(--main_color);
    color: #fff;
}

.web_service .web_ico1 {
    background: url(../images/web_ico1.png) no-repeat top right;
}

.web_service li:hover .web_ico1 {
    background: url(../images/web_ico01.png) no-repeat top right;
}

.web_service .web_ico2 {
    background: url(../images/web_ico2.png) no-repeat top right;
}

.web_service li:hover .web_ico2 {
    background: url(../images/web_ico02.png) no-repeat top right;
}

.web_service .web_ico3 {
    background: url(../images/web_ico3.png) no-repeat top right;
}

.web_service li:hover .web_ico3 {
    background: url(../images/web_ico03.png) no-repeat top right;
}

.web_service .web_ico4 {
    background: url(../images/web_ico4.png) no-repeat top right;
}

.web_service li:hover .web_ico4 {
    background: url(../images/web_ico04.png) no-repeat top right;
}

.web_service li .title {
    font-size: 24px;
    margin-bottom: 60px;
}

.web_service li .title span {
    margin-top: 15px;
    display: block;
    color: #888;
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
}

.web_service li:hover span {
    color: rgba(255, 255, 255, 0.6);
}

.web_service li .txt {
    line-height: 1.8;
    position: relative;
    padding-top: 25px;
}

.web_service li .txt:before {
    width: 100px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--main_color);
    content: "";
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    margin-bottom: 25px;
}

.web_service li .txt:after {
    width: 0;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    content: "";
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.web_service li:hover .txt:after {
    width: 100px;
    opacity: 1;
    visibility: visible;
}


/*web 我们可以做得更好*/

.web_ys {
    min-width: 1200px;
}

.web_ys li {
    position: relative;
    float: left;
    width: 25%;
    height: 500px;
    overflow: hidden;
}

.web_ys li img {
    position: relative;
    left: 50%;
    margin-left: -335px;
}

.web_ys li .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(3, 92, 172, .66);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s;
}

.web_ys li .box {
    position: absolute;
    width: 100%;
    top: 200px;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    transition: all 0.5s;
}

.web_ys li .box .ico {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all 0.5s;
}

.web_ys li .box .ico1 {
    background-image: url(../images/ico11.png);
}

.web_ys li .box .ico2 {
    background-image: url(../images/ico12.png);
}

.web_ys li .box .ico3 {
    background-image: url(../images/ico13.png);
}

.web_ys li .box .ico4 {
    background-image: url(../images/ico14.png);
}

.web_ys li .box .ico5 {
    background-image: url(../images/ico15.png);
}

.web_ys li .box h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

.web_ys li .box p {
    width: 70%;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 14px;
    line-height: 24px;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s;
}

.web_ys li:hover .bg {
    opacity: 1;
    filter: alpha(opacity=100);
}

.web_ys li:hover .box p {
    padding-top: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}

.web_ys li:hover .box {
    top: 132px;
}

.web_ys li:hover .box .ico1 {
    background-image: url(../images/ico11_11.png);
}

.web_ys li:hover .box .ico2 {
    background-image: url(../images/ico12_12.png);
}

.web_ys li:hover .box .ico3 {
    background-image: url(../images/ico13_13.png);
}

.web_ys li:hover .box .ico4 {
    background-image: url(../images/ico14_14.png);
}

.web_ys li:hover .box .ico5 {
    background-image: url(../images/ico15_15.png);
}


/*流程*/

.web_lc {
    background: url(../images/testimonial-bg.jpg);
    min-width: 1200px;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 10px 0 80px 0;
}

.lc_box {
    margin-top: 20px;
}

.lc_box li {
    text-align: center;
    color: #FFF;
    font-size: 16px;
    float: left;
    width: 11.1%
}

.lc_box li .lc_ico img {
    max-width: 40%;
    transition: all 0.5s;
}

.lc_box li:hover .lc_ico img {
    transform: rotateY(180deg);
}

.lc_box li .lc_bian img {
    width: 100%;
}


/*服务保障*/

.bz_box li {
    float: left;
    box-sizing: border-box;
    width: 25%;
    text-align: center;
    border-right: solid 1px #ddd;
    margin: 30px 0;
}

.bz_box li:nth-child(4n) {
    border-right: 0;
}

.bz_box li img {
    margin-bottom: 15px;
}

.bz_box li p {
    line-height: 26px;
    color: #666;
    font-size: 13px;
}

.bz_box li p span {
    display: block;
    font-weight: bold;
    color: #222;
    font-size: 15px;
}


/*推荐案例*/

.web_case li {
    width: 31.3%;
    margin: 0px 1%;
    float: left;
    transition: 0.3s all;
}

.web_case li:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
    transition: 0.3s all;
}

.web_case .case_img {
    width: 100%;
    display: block;
    position: relative;
}

.web_case .case_img img {
    width: 100%;
    display: block;
}

.web_case .case_txt {
    border: solid 1px #ddd;
    border-top: 0;
    padding: 20px 6% 15px;
}

.web_case .case_txt1 {
    font-size: 16px;
    margin-bottom: 10px;
}

.web_case .case_txt2 {
    font-size: 12px;
    margin-bottom: 15px;
    color: #888;
    line-height: 20px;
}


/*相关文章*/

.web_news {
    margin-bottom: .8rem;
}

.web_news li {
    width: 32.3%;
    height: 140px;
    margin: 10px 1.5% 10px 0;
    padding: 25px 20px;
    box-sizing: border-box;
    border: solid 1px #ddd;
    transition: 0.5s all;
}

.web_news li:nth-child(3n) {
    margin-right: 0;
}

.web_news li:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
}

.web_news li h2 {
    font-size: 16px;
    margin-bottom: 15px;
}

.web_news li p {
    line-height: 24px;
    color: #666;
}


/*=================微信小程序===================*/

.bg_hui {
    background: #f5f5f5;
    padding: 15px 0 1rem 0;
    min-width: 1200px;
}


/*小程序唯一性 */

.weiyi {
    background: url(../images/duang.png) no-repeat right top;
    height: 110px;
    padding: 40px 0;
}

.weiyi .weiyi_wen {
    float: left;
}

.weiyi .weiyi_txt {
    float: left;
    margin: 0 0px 0 30px;
}

.weiyi .weiyi_txt h5 {
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 10px;
}

.weiyi .weiyi_txt h5 strong {
    font-size: 50px;
    margin-right: 20px;
}

.weiyi .weiyi_txt p {
    color: #fff;
    font-size: 20px;
}

.weiyi_kf {
    float: right;
    margin: 35px 100px 0 0px;
}

.weiyi_kf a {
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    box-sizing: border-box;
    border: solid 1px rgba(255, 255, 255, 0.8);
    display: block;
}

.weiyi_kf a:hover {
    background: #fff;
    border: solid 1px #fff;
    color: #00AD66;
}


/*怎么做小程序*/

.slideTxtBox {
    width: 100%;
}

.slideTxtBox .hd ul {
    width: 670px;
    margin: auto;
}

.slideTxtBox .hd ul li {
    width: 120px;
    height: 40px;
    line-height: 38px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.slideTxtBox .hd ul li.on {
    background: #00AD66;
    border: 1px solid #00AD66;
    box-shadow: 3px 0 10px rgba(72, 157, 255, .3);
    color: #fff;
}

.slideTxtBox .bd {
    clear: both;
    padding-top: 46px;
}

.slideTxtBox .bd .pic {
    width: 33%;
    text-align: center;
}

.slideTxtBox .bd .box {
    width: 67%;
}

.slideTxtBox .bd .box ul {
    border-bottom: solid 1px #e8e8e8;
    padding-bottom: 15px;
}

.slideTxtBox .bd .box li {
    margin: 10px 0;
    float: left;
    width: 25%;
    font-size: 14px;
    color: #555;
    padding: 0 25px;
    box-sizing: border-box;
}

.slideTxtBox .bd .box li img {
    vertical-align: middle;
    margin-right: 6px;
}

.slideTxtBox .bd .box p {
    padding: 20px 25px;
    color: #555;
    line-height: 22px;
}

.slideTxtBox .bd .box .price {
    padding: 0 25px;
}

.slideTxtBox .bd .box .price dt {
    float: left;
    font-weight: bold;
    line-height: 26px;
}

.slideTxtBox .bd .box .price dd {
    font-size: 20px;
    font-weight: bold;
    color: #ff6800;
    margin-right: 50px;
    display: inline-block;
}

.slideTxtBox .bd .box .price dd span {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

.slideTxtBox .bd .box a {
    display: block;
    float: right;
    width: 142px;
    height: 42px;
    line-height: 42px;
    background: #00AD66;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-right: 25px;
}


/*小程序应用*/

.xcx_yy li {
    width: 23.8%;
    margin: 10px 0;
    height: 260px;
    border: solid 1px #e8e8e8;
    background: #FFF;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    transition: 0.3s all;
}

.xcx_yy li:hover {
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
    transition: 0.3s all;
}

.xcx_yy .ico {
    height: 140px;
    line-height: 140px;
}

.xcx_yy .ico img {
    display: inline-block;
    vertical-align: middle;
}

.xcx_yy li h3 {
    font-size: 20px;
    height: 36px;
    color: #000;
    font-weight: normal;
}

.xcx_yy li p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    width: 80%;
    margin: auto;
}


/*小程序模板展示*/

#certify {
    position: relative;
}

#certify .swiper-container {
    padding-bottom: 20px;
}

#certify .swiper-slide {
    width: 302px;
    height: 559px;
    padding-top: 70px;
    box-sizing: border-box;
    background: url(../images/iPhone.png) no-repeat;
    text-align: center;
}

#certify .swiper-slide img {
    display: inline-block;
    width: 229px;
    height: 407px;
}

#certify .swiper-button-prev {
    left: 0px;
    width: 45px;
    height: 45px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

#certify .swiper-button-prev:hover {
    background-position: 0 -46px;
    background-size: 100%
}

#certify .swiper-button-next {
    right: 0px;
    width: 45px;
    height: 45px;
    background: url(../images/wm_button_icon.png) no-repeat;
    background-position: 0 -93px;
    background-size: 100%;
}

#certify .swiper-button-next:hover {
    background-position: 0 -139px;
    background-size: 100%
}


/*服务流程*/

.xcx_fwlc .steps {
    width: 1200px;
    margin: auto;
}

.xcx_fwlc .steps li {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    padding: 0 30px;
    line-height: 1.4;
}

.xcx_fwlc .steps li h4 {
    font-size: .25rem;
    font-weight: bold;
    padding-top: 50px;
    padding-bottom: 10px;
}

.xcx_fwlc .steps li.step1 {
    background: -webkit-linear-gradient(-40deg, #5ae6db, #64b4ef);
    background: -o-linear-gradient(-40deg, #5ae6db, #64b4ef);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(-40deg, #5ae6db, #64b4ef);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(-40deg, #5ae6db, #64b4ef);
    /* 标准的语法 */
}

.xcx_fwlc .steps li.step2 {
    background: -webkit-linear-gradient(-40deg, #ffb97d, #ff7985);
    background: -o-linear-gradient(-40deg, #ffb97d, #ff7985);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(-40deg, #ffb97d, #ff7985);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(-40deg, #ffb97d, #ff7985);
    /* 标准的语法 */
}

.xcx_fwlc .steps li.step3 {
    background: -webkit-linear-gradient(-40deg, #81eab2, #14c5ce);
    background: -o-linear-gradient(-40deg, #81eab2, #14c5ce);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(-40deg, #81eab2, #14c5ce);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(-40deg, #81eab2, #14c5ce);
    /* 标准的语法 */
}

.xcx_fwlc .steps li.step4 {
    background: -webkit-linear-gradient(-40deg, #82c3fe, #9182f8);
    background: -o-linear-gradient(-40deg, #82c3fe, #9182f8);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(-40deg, #82c3fe, #9182f8);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(-40deg, #82c3fe, #9182f8);
    /* 标准的语法 */
}

.xcx_fwlc .steps li.step5 {
    background: -webkit-linear-gradient(-40deg, #64b6ee, #5fcbe5);
    background: -o-linear-gradient(-40deg, #64b6ee, #5fcbe5);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(-40deg, #64b6ee, #5fcbe5);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(-40deg, #64b6ee, #5fcbe5);
    /* 标准的语法 */
}


/*小程序常见问题*/

.xcx_wt {
    margin-bottom: 1rem;
}

.xcx_wt li {
    width: 25%;
    font-size: 16px;
    line-height: 60px;
}

.xcx_wt li a:hover {
    text-decoration: underline;
}


/*=================网站模板===============*/

.muban_nav {
    text-align: center;
    margin-bottom: .3rem;
}

.muban_nav a {
    margin: 0 2px 10px 2px;
    display: inline-block;
    padding: 5px 15px;
    transition: 0.5s all;
    border-radius: 3px;
}

.muban_nav a.on,
.muban_nav a:hover {
    background: var(--main_color);
    color: #fff;
}

.mb_list li {
    width: 23%;
    margin-right: 2.6%;
    margin-bottom: .25rem;
    position: relative;
}

.mb_list li:nth-child(4n) {
    margin-right: 0;
}

.mb_list li .pic {
    overflow: hidden;
    border-radius: 8px;
    transition: all .3s ease-out 0s;
    position: relative;
}

.mb_list li:hover .pic {
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .3);
}

.mb_list li .pic img {
    width: 100%;
    display: block;
}

.mb_list li .txt {
    padding: 25px 0 0 10px;
}

.mb_list li .txt h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}

.mb_list li .txt p {
    font-size: 12px;
    color: #999;
}

.mb_list li .txt p span {
    margin-left: 5px;
}

.mb_list li .pic .pro-mask {
    width: 86%;
    height: 40px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    opacity: 0;
}

.mb_list li .pic:hover .pro-mask {
    bottom: 20px;
    opacity: 1;
}

.mb_list li .pic .pro-mask a {
    width: 50%;
    height: 40px;
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    color: #fff;
    border-radius: 50px 0 0 50px;
    background-size: 300% 100%;
    transition: all .4s ease-in-out;
}

.mb_list li .pic .pro-mask .preview {
    background-image: linear-gradient(90deg, #6253e1, #852d91, #f24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, .75);
}

.mb_list li .pic .pro-mask .pro-details {
    background-image: linear-gradient(90deg, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, .75);
}

.mb_list li .pic .pro-mask a:last-child {
    border-radius: 0 50px 50px 0;
}

.mb_show {
    text-align: center;
}

.mb_show img {
    max-width: 100%;
}


/*网站优化*/

.seo_01 {
    font-size: 16px;
    line-height: 2;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: .8rem;
}


/*优化效果*/

.seo_03 li {
    width: 49%;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #fff;
    padding: .25rem;
    font-size: 15px;
    box-sizing: border-box;
}

.seo_03 li p {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    padding-bottom: 8px;
}


/*网站优化解决方案*/

.seo_fa {
    overflow: hidden;
    padding-bottom: .6rem;
}

.seo_fa li {
    margin-bottom: 20px;
    position: relative;
    width: 16.6%;
    height: 252px;
    text-align: center;
    cursor: pointer
}

.seo_fa a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 5px;
}

.seo_fa a .bg {
    position: relative;
    margin: 64px auto 30px;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s all;
}

.seo_fa a:hover .bg {
    margin: 10px auto 6px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%
}

.seo_fa a .bg i {
    display: block;
    width: 80px;
    height: 80px;
}

.seo_fa a .bg .ico_01 {
    background-image: url(../images/seo_fa1.png);
}

.seo_fa a .bg .ico_02 {
    background-image: url(../images/seo_fa2.png);
}

.seo_fa a .bg .ico_03 {
    background-image: url(../images/seo_fa3.png);
}

.seo_fa a .bg .ico_04 {
    background-image: url(../images/seo_fa4.png);
}

.seo_fa a .bg .ico_05 {
    background-image: url(../images/seo_fa5.png);
}

.seo_fa a .bg .ico_06 {
    background-image: url(../images/seo_fa6.png);
}

.seo_fa a .bg .ico_07 {
    background-image: url(../images/seo_fa7.png);
}

.seo_fa a .bg .ico_08 {
    background-image: url(../images/seo_fa8.png);
}

.seo_fa a .bg .ico_09 {
    background-image: url(../images/seo_fa9.png);
}

.seo_fa a .bg .ico_10 {
    background-image: url(../images/seo_fa10.png);
}

.seo_fa a .bg .ico_11 {
    background-image: url(../images/seo_fa11.png);
}

.seo_fa a .bg .ico_12 {
    background-image: url(../images/seo_fa12.png);
}

.seo_fa a h3 {
    font-size: 18px;
    font-weight: normal;
}

.seo_fa a:hover h3 {
    color: #fff;
    font-weight: bold
}

.seo_fa a p {
    font-size: 12px;
    color: #fff;
    margin-top: 12px;
    line-height: 20px;
    opacity: 0;
}

.seo_fa a:hover p {
    opacity: 1;
}

.seo_fa a .btn {
    display: block;
    width: 80px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin: 15px auto 0;
    font-style: normal;
}

.seo_fa .bg-1:hover,
.seo_fa .bg-1 .bg,
.bg-12:hover,
.seo_fa .bg-12 .bg {
    background: -webkit-linear-gradient(#019bff, #9079ff);
    background: -o-linear-gradient(#019bff, #9079ff);
    background: -moz-linear-gradient(#019bff, #9079ff);
    background: linear-gradient(#019bff, #9079ff)
}

.seo_fa .bg-2:hover,
.seo_fa .bg-2 .bg,
.seo_fa .bg-11:hover,
.seo_fa .bg-11 .bg {
    background: -webkit-linear-gradient(#fd985b, #fd4e5a);
    background: -o-linear-gradient(#fd985b, #fd4e5a);
    background: -moz-linear-gradient(#fd985b, #fd4e5a);
    background: linear-gradient(#fd985b, #fd4e5a)
}

.seo_fa .bg-3:hover,
.seo_fa .bg-3 .bg,
.seo_fa .bg-10:hover,
.seo_fa .bg-10 .bg {
    background: -webkit-linear-gradient(#6986e7, #895ed9);
    background: -o-linear-gradient(#6986e7, #895ed9);
    background: -moz-linear-gradient(#6986e7, #895ed9);
    background: linear-gradient(#6986e7, #895ed9)
}

.seo_fa .bg-4:hover,
.seo_fa .bg-4 .bg,
.seo_fa .bg-8:hover,
.seo_fa .bg-8 .bg {
    background: -webkit-linear-gradient(#ffb104, #ff8252);
    background: -o-linear-gradient(#ffb104, #ff8252);
    background: -moz-linear-gradient(#ffb104, #ff8252);
    background: linear-gradient(#ffb104, #ff8252)
}

.seo_fa .bg-5:hover,
.seo_fa .bg-5 .bg,
.seo_fa .bg-7:hover,
.seo_fa .bg-7 .bg {
    background: -webkit-linear-gradient(#b34efe, #ff3d7f);
    background: -o-linear-gradient(#b34efe, #ff3d7f);
    background: -moz-linear-gradient(#b34efe, #ff3d7f);
    background: linear-gradient(#b34efe, #ff3d7f)
}

.seo_fa .bg-6:hover,
.seo_fa .bg-6 .bg,
.seo_fa .bg-9:hover,
.seo_fa .bg-9 .bg {
    background: -webkit-linear-gradient(#99cc34, #5fcc55);
    background: -o-linear-gradient(#99cc34, #5fcc55);
    background: -moz-linear-gradient(#99cc34, #5fcc55);
    background: linear-gradient(#99cc34, #5fcc55)
}

.seo_fa a:hover .bg {
    background-image: none!important
}

.seo04 p {
    font-size: .18rem;
    line-height: 2;
    text-align: center;
}

.seo04 p img {
    margin-top: .5rem;
}


/*位置导航*/

.sub_weizhi {
    line-height: 56px;
    height: 56px;
    background: #fff;
    border-bottom: solid 1px #ececec;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
    min-width: 1200px;
    margin: auto;
}

.sub_weizhi .weizhi {
    background: url(../images/home_ico.png) no-repeat left center;
    padding-left: 25px;
    color: #666;
}

.sub_nav li {
    float: left;
    margin-right: 25px;
    background: url(../images/case9.png) no-repeat right center;
    padding-right: 25px;
}

.sub_nav li a {
    display: block;
    position: relative;
}

.sub_nav li a:before {
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 10;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background: var(--main_color);
    content: "";
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.sub_nav li:hover>a:before {
    width: 100%;
}

.sub_nav li.currclass a,
.sub_nav li.currclass a:before {
    color: var(--main_color);
    font-weight: bold;
    width: 100%;
}


/*产品服务  推荐服务*/

.title_ny {
    text-align: left;
    margin-bottom: 35px;
    margin-top: .5rem;
}

.title_ny h3 {
    display: inline-block;
    margin-bottom: 0;
    font-size: 30px;
    color: #222;
    font-weight: normal;
}

.title_ny h3 small {
    vertical-align: middle;
    margin-left: 5px;
}

.title_ny h6 {
    display: inline-block;
    margin: 3px 0 0 8px;
    font-weight: normal;
    font-size: 14px;
    color: #8c8d8e;
}

.service_list li {
    width: 23.85%;
    margin-right: 1.5%;
    height: 132px;
    padding: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: solid 1px #e8e8e8;
    transition: 0.3s all;
    border-radius: 3px;
}

.service_list li:nth-child(4n) {
    margin-right: 0;
}

.service_list li .pic {
    width: 75px;
    float: left;
    padding-top: 8px;
    transition: 0.3s all;
}

.service_list li .pic img {
    display: block;
    width: 48px;
}


/*.service_list li:hover .pic img:nth-child(1){ display:none;}
.service_list li:hover .pic img:nth-child(2){ display:block;}
*/

.service_list li .txt p {
    line-height: 22px;
    color: #666;
    font-size: 12px;
}

.service_list li .txt h3 {
    font-size: 18px;
    color: #333;
    display: block;
    padding: 0px 0 10px 0;
    font-weight: normal;
}

.service_list li:hover .pic {
    padding-top: 0px;
}

.service_list li:hover {
    /*border:solid 1px var(--main_color);*/
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -3px,
    0);
    -webkit-transform: translate3d(0, -3px, 0);
    transition: 0.3s all;
}

.service_list li:hover .txt h3 {
    color: #ff4800;
}


/*产品服务  模板型*/

.s_sub_nav {
    height: 58px;
    line-height: 58px;
    border-bottom: solid 1px #e8e8e8;
    text-align: center;
    font-size: 16px;
    background: #f8f8f8;
}

.s_sub_nav a {
    display: block;
    float: left;
    width: 11.1%;
    border-right: solid 1px #eee;
    text-align: center;
    box-sizing: border-box;
}

.s_sub_nav a:last-child {
    border-right: 0;
}

.s_sub_nav a:hover,
.s_sub_nav a.currclass {
    background: var(--main_color);
    color: #fff;
}

.tc_con {
    margin-top: .6rem;
}

.tc_con .left {
    width: 42%;
}

#tc_focus .swiper-slide {
    text-align: center;
    overflow: hidden;
    position: relative;
    background: #000;
    height: 353px;
}


/*分页器*/

#tc_focus .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.66);
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    opacity: 1.0;
}

#tc_focus .swiper-pagination-bullet-active {
    background: var(--main_color);
    color: #fff;
    width: 25px;
    border-radius: 30px;
    opacity: 1.0;
}

#tc_focus .swiper-pagination {
    bottom: 15px;
}

.tc_con .right {
    width: 55%;
}

.tc_con .right .taocan_title b {
    font-size: 32px;
    color: #111;
    float: left;
    font-weight: normal;
    margin-right: 10px;
}

.tc_con .right .taocan_title span {
    width: 25px;
    height: 25px;
    display: inline-block;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    font-weight: bold;
}

.tc_con .right .taocan_title .cu {
    background: #ff6600;
    margin-top: 10px;
}

.tc_con .right .taocan_title .xiao {
    background: #01cdff;
    margin-top: 5px;
}

.tc_con .right .canshu {
    background: url(../images/conbg_03.jpg);
    padding: 20px;
    margin-top: 20px;
}

.tc_con .right .canshu li {
    margin-bottom: 10px;
}

.tc_con .right .canshu li lable {
    border: 1px solid #aaaaaa;
    line-height: 25px;
    height: 25px;
    width: 80px;
    text-align: center;
    display: inline-block;
    color: #555;
    margin-right: 15px;
}

.tc_con .right .canshu li #spanTC {
    color: var(--main_color);
    font-size: 25px;
    font-weight: bold;
}

.taocan_titleD,
.taocan_titleD:hover {
    border: 1px solid #989898;
    line-height: 25px;
    height: 25px;
    margin-right: 5px;
    color: #555;
    background: #ffffff;
    display: inline-block;
    padding: 0 10px;
}

.taocan_titleD-1,
.taocan_titleD-1:hover {
    border: 1px solid var(--main_color);
    color: #fff;
    background-color: var(--main_color);
    line-height: 25px;
    height: 25px;
    margin-right: 5px;
    display: inline-block;
    padding: 0 10px;
}

.tc_con .right .canshu li.a_link1 a {
    display: inline-block;
    width: 108px;
    line-height: 33px;
    color: #666666;
    background: #ffffff;
    border: 1px solid #666666;
    text-align: center;
    margin-right: 6px;
}

.tc_con .right .canshu li.a_link1 a:hover {
    color: #FFFFFF;
    background: #585858;
}

.tc_con .right .canshu li.a_link1 a:first-child {
    display: inline-block;
    line-height: 33px;
    color: #FFFFFF;
    background: var(--main_color);
    border: 1px solid var(--main_color);
    transition: 0.3s all;
}


/*222*/

.tc_main table {
    border: solid 1px #ddd;
    border-collapse: collapse;
    line-height: 25px;
}

.tc_main table tr:first-child {
    font-size: 16px;
    background: #f5f6f7;
    text-align: center;
}

.tc_main table tr:first-child td {
    padding-left: 0px;
    height: 50px;
}

.tc_main table td {
    height: 40px;
    padding-left: 20px;
    color: #666;
}

.tc_main table td:first-child {
    background: url(/mysite/images/c-c3.jpg) repeat-y;
}

.tc_main table td:last-child {
    font-size: 12px;
}


/*33333333*/

.tc_liucheng {
    margin-top: 25px;
}

.tc_liucheng li {
    width: 16.6%;
    text-align: center;
}

.tc_liucheng li .icon {
    width: 86px;
    height: 86px;
    display: inline-block;
}

.tc_liucheng li .title {
    font-size: 18px;
    margin-bottom: 5px;
}

.tc_liucheng li .content {
    color: #666;
}

.tc_liucheng li:hover img {
    transform: rotateY(360deg);
    transition: 0.9s;
}


/*4444*/

.tc_zl {
    margin-top: .8rem;
}

.tc_zl li {
    float: left;
    width: 45%;
}

.tc_zl li:nth-child(1) {
    background: url(../images/bg-bg_03.jpg) no-repeat right bottom;
}

.tc_zl li:nth-child(2) {
    width: 10%;
    text-align: center;
}

.tc_zl li:nth-child(3) {
    background: url(../images/bg-bg_05.jpg) no-repeat right bottom;
}

.tc_zl li h5 {
    border-bottom: solid 1px #ddd;
    font-size: 22px;
    font-weight: normal;
    height: 42px;
    margin-bottom: 25px;
}

.tc_zl li h5 span {
    border-bottom: solid 2px var(--main_color);
    height: 41px;
    display: inline-block;
}

.tc_zl li p {
    line-height: 30px;
    padding-left: 5px;
}


/*555*/

.tc_faq ul {
    background-image: url(../images/z05-zuowangzhan-nav.png);
    background-repeat: no-repeat;
    background-position: 55px 6px;
    height: 570px;
    padding-left: 100px
}

.tc_faq ul li {
    height: 120px
}

.tc_faq ul li h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    height: 32px;
    color: #fff;
}

.tc_faq ul li p {
    line-height: 24px;
    color: #555;
    margin-top: 5px;
    color: #ccc;
    text-indent: 28px;
    text-align: justify;
}

.taocan_zc {
    line-height: 38px;
    height: 38px;
    width: 500px;
    color: #fff;
    font-size: 16px;
    background: var(--main_color);
    text-align: center;
    border-radius: 38px;
    margin: .5rem auto .8rem auto;
}


/*==========================案例展示===========================*/

.web_list li {
    width: 23.5%;
    margin-right: 2%;
    transition: 0.3s all;
    background: #f6f6f6;
    overflow: hidden;
    margin-bottom: .3rem;
    position: relative;
}

.web_list li:nth-child(4n) {
    margin-right: 0;
}

.web_list li .pic {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.web_list li .pic>img {
    width: 100%;
    display: block;
    transition: 0.5s all;
}

.web_list li:hover>img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.web_list li .pic .mask {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s ease;
}

.web_list li .pic .mask dt {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
}

.web_list li .pic .mask dd {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
}

.web_list li:hover .pic .mask {
    opacity: 1;
}

.web_list li:hover .pic .mask dd img {
    -webkit-transform: rotate(360deg);
    animation: rotation 10s linear infinite;
    -moz-animation: rotation 10s linear infinite;
    -webkit-animation: rotation 10s linear infinite;
    -o-animation: rotation 10s linear infinite;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.web_list li .txt {
    padding: 12px 5% 12px;
}

.web_list li .txt h5 {
    font-size: .18rem;
    line-height: 30px;
    font-weight: normal;
    color: #222;
}

.web_list li .txt p {
    line-height: 2;
    font-size: 12px;
    color: #666;
}

@media screen and (max-width:1440px) {
    .web_list li {
        width: 32%;
        margin-right: 2%;
    }
    .web_list li:nth-child(4n) {
        margin-right: auto;
    }
    .web_list li:nth-child(3n) {
        margin-right: 0;
    }
}


/*案例内容页*/

.page_ban .work_box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.page_ban .work_box h1 {
    font-size: .42rem;
    color: #FFF;
    font-weight: normal;
    margin-bottom: .25rem;
}

.page_ban .work_box p {
    color: #FFF;
    font-size: 16px;
}

.page_ban .work_box a {
    display: inline-block;
    border: 1px solid #fff;
    width: .46rem;
    height: .46rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
    margin-top: .5rem;
}

.page_ban .work_box a:hover {
    border: 1px solid #fff;
    background-color: #fff;
}

.page_ban .work_box a i {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
    background: url(../images/ico_07.png) no-repeat center;
}

.page_ban .work_box a:hover i {
    background: url(../images/ico_07_h.png) no-repeat center;
}

.page_ban .work_box .bg {
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease 0s;
    position: absolute;
    border-radius: 50%;
}

.page_ban .work_box a:hover .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
}

.work_info1 {
    width: 40%;
    height: 652px;
    background: #f8f8f8;
    padding: .8rem 5% 0 5%;
    box-sizing: border-box;
}

.work_info1 h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.work_info1 h5 {
    font-size: 20px;
    font-weight: normal;
}

.work_info1 h5:after {
    content: "";
    display: block;
    width: 10px;
    background: #999;
    height: 2px;
    margin: 15px 0 25px 0;
}

.work_info1 p {
    line-height: 26px;
    text-align: justify;
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.work_info1 .link_box {
    margin-top: 36px;
}

.work_info1 .link_box a {
    display: inline-block;
    border: 1px solid #aaa;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.work_info1 .link_box .link1 i {
    background: url(../images/ico_07_h.png) no-repeat center;
}

.work_info1 .link_box .link2 i {
    background: url(../images/ico_06.png) no-repeat center;
}

.work_info1 .link_box i {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
}

.work_info1 .link_box .bg {
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease 0s;
    position: absolute;
    border-radius: 50%;
}

.work_info1 .link_box a:hover {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
}

.work_info1 .link_box a:hover .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--main_color);
}

.work_info1 .link_box a.link1:hover i {
    background: url(../images/ico_07.png) no-repeat center;
}

.work_info1 .link_box a.link2:hover i {
    background: url(../images/ico_06_h.png) no-repeat center;
}

.work_info2 {
    width: 60%;
    min-width: 631px;
    height: 652px;
    background: url(../images/case_show_bg.png) no-repeat center center #e8e8e8;
    box-sizing: border-box;
}

.work_info2 .pic {
    width: 590px;
    height: 327px;
    overflow: hidden;
    margin: auto;
    margin-top: 76px;
    position: relative;
}

.work_info2 .pic img {
    width: 100%;
    display: block;
}


/*图文列表页*/

.pic_art_list dl {
    padding: 25px 30px;
    border-bottom: solid 1px #dedede;
    transition: all .3s;
}

.pic_art_list dl:hover {
    background: #f8f8f8;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
}

.pic_art_list dt {
    width: 360px;
    height: 210px;
    overflow: hidden
}

.pic_art_list dt img {
    width: 100%;
}

.pic_art_list dd {
    width: 700px;
}

.pic_art_list dd h5 {
    font-size: 18px;
    margin: 10px 0 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pic_art_list dd h5 a:hover {
    color: var(--main_color);
}

.pic_art_list dd p {
    text-align: justify;
    line-height: 24px;
    color: #666;
    margin-bottom: 25px;
}

.pic_art_list dl dd i {
    font-size: 12px;
    font-style: normal;
    height: 35px;
    line-height: 35px;
    margin-right: 20px;
    display: inline-block;
    color: #666;
}

.pic_art_list dl dd i.n_time {
    background: url(../images/n_time.png) no-repeat left center;
    background-size: 23px auto;
    padding-left: 30px;
}

.pic_art_list dl dd i.n_tags {
    background: url(../images/tags_pic.png) no-repeat left center;
    background-size: 23px auto;
    padding-left: 30px;
}

.pic_art_list .news_more {
    width: 105px;
    height: 32px;
    line-height: 32px;
    background: #ddd;
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.pic_art_list .news_more:hover {
    background: var(--main_color);
    color: #fff;
}


/* 新闻内容页 */

.dot {
    background: url(../images/dot.png) no-repeat center;
    height: 36px;
    padding: 25px 0;
}

.newsCon {
    overflow: hidden;
    background: #f8f8f8;
    width: 1080px;
    margin: auto;
    padding: 60px 80px 20px 80px;
    box-sizing: border-box;
    border-radius: 5px;
}

.ntitle {
    padding: 0px 0px 15px 0px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.ntitle h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.ntitle span {
    font-size: 12px;
    color: #666;
    padding: 0 10px;
}

.neirong {
    line-height: 30px;
    text-align: justify;
    overflow: hidden;
}

.neirong img {
    max-width: 95%;
}

.neirong p {
    margin-bottom: 10px;
    font-size: 15px;
}

.banquan {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 10px 15px;
    color: #666;
    line-height: 2;
    margin-top: 50px;
}


/*内容页上下页*/

.plist {
    overflow: hidden;
    padding: 40px 0;
    border-top: solid 1px #ddd;
}

.plist .prev {
    float: left;
    width: 50%;
}

.plist .prev a {
    background: url("../images/arr_circle_left.png") no-repeat left center;
    height: 25px;
    line-height: 25px;
    text-indent: 35px;
}

.plist .prev a:hover {
    text-decoration: underline;
    background: url("../images/arr_con2.png") no-repeat left center;
}

.plist a {
    font-size: 13px;
    color: #161616;
    display: block;
}

.plist .next {
    float: right;
    width: 50%;
}

.plist .next a {
    background: url("../images/arr_circle.png") no-repeat right center;
    height: 25px;
    line-height: 25px;
    padding-right: 35px;
    text-align: right;
}

.plist .next a:hover {
    text-decoration: underline;
    background: url("../images/arr_con.png") no-repeat right center;
}


/*404*/

.page_msg {
    padding: 50px;
    background: #f8f8f8;
    border-radius: 5px;
}

.page_msg h5 {
    line-height: 60px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    font-size: 25px;
    text-align: center;
}

.page_msg_con {
    color: #999;
    line-height: 40px;
    text-align: center;
    padding: 25px 0;
}

.page_msg_con i {
    font-size: 100px;
    color: #ddd;
    margin-bottom: 10px;
}


/*======================搜索列表======================*/

.serch_list h2 {
    font-size: 20px;
    margin: .5rem 0 .25rem 0;
    position: relative;
    padding-left: 15px;
}

.serch_list h2:after {
    width: 4px;
    height: 18px;
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    background: var(--main_color);
}

.serch_list li {
    line-height: 3;
    font-size: 16px;
    background: url(../images/dian1.png) no-repeat left center;
    padding-left: 15px;
    border-bottom: solid 1px #e8e8e8;
}

.serch_list li span {
    float: right;
    font-size: 14px;
    color: #888;
}


/*搜索页面*/

.border_box {
    background: #fff;
    /*box-shadow: 2px 2px 20px rgba(0,0,0,.05);*/
    padding: 60px 80px;
    box-sizing: border-box;
}

.portlet-title {
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.portlet-title h5 {
    font-size: 18px;
    position: relative;
    float: left;
    padding: 0 5px;
}

.portlet-title h5:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
    background: #004d98;
}

.serch_n {
    padding: 0px 300px;
    position: relative;
    margin-bottom: .2rem;
}

.serch_n input {
    width: 100%;
    padding: 15px 25px;
    font-size: 17px;
    outline: none;
    background: #f8f8f8;
    box-sizing: border-box;
    height: .6rem;
    line-height: .6rem;
    border: solid 1px #ddd;
}

.serch_n .btn {
    position: absolute;
    right: 290px;
    top: 0px;
}

.serch_n .btn button {
    width: 125px;
    height: .6rem;
    border: 0;
    cursor: pointer;
    outline: none;
    padding-left: 40px;
    font-size: .18rem;
    color: #fff;
    background: url('../images/serch.png') no-repeat 30px center var(--main_color);
    background-size: 20px auto;
}


/*======================搜索======================*/

.serch {
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serch #keyword {
    width: 78%;
    height: 36px;
    border-radius: 5px 0 0 5px;
    background: url(../images/icon-sq2.png) 15px center no-repeat #f2f2f2;
    padding: 0 .2rem;
    padding-left: 50px;
    font-size: 15px;
    box-shadow: none;
    -webkit-appearance: none;
    border: 0;
    box-sizing: border-box;
    outline: none;
    float: left;
}

.serch .btn_submit {
    width: 22%;
    height: 36px;
    background: #004d98;
    border-radius: 0 5px 5px 0;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border: 0;
    outline: none;
}


/*新版分页*/

.search-pagination {
    text-align: center;
    margin: .25rem 0 .8rem 0;
}

.pagination li {
    display: inline-block;
    margin: 0 3px;
    background-color: #f2f2f2;
    transition: 0.3s;
    /*box-shadow: 2px 2px 20px rgba(0,0,0,.05);*/
}

.pagination li a {
    display: inline-block;
    font-size: 16px;
    width: 80px;
    height: 50px;
    line-height: 50px;
    color: #555;
    box-sizing: border-box;
    transition: 0.3s all;
    border-radius: 3px;
}

.pagination li.active a,
.pagination li a:hover {
    color: #fff !important;
    background-color: var(--main_color);
}


/*分页*/

.mypages {
    margin: 25px 0 10px 0;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

.mypages a {
    background: #e8e8e8;
    padding: 8px 15px;
    color: #666;
    font-size: 14px;
    border-radius: 3px;
}

.mypages a.curr,
.mypages a:hover {
    background: var(--main_color);
    color: #FFFFFF;
}


/*分页1*/

.mypages1 {
    margin: 25px auto 10px auto;
    text-align: center;
    height: 50px;
    line-height: 50px;
    min-width: 1200px;
}

.mypages1 a {
    padding: 6px 6px;
    color: #888;
    font-size: 28px;
    font-family: "novecento_widelight";
}

.mypages1 a.curr,
.mypages a:hover {
    color: #000;
}


/*分页2*/

.mypage_2 {
    font-size: 0;
    text-align: center;
    overflow: hidden;
}

.mypage_2>* {
    box-sizing: border-box;
    color: #666;
    width: 42px;
    height: 42px;
    line-height: 40px;
    background: #fff;
    border: solid 1px #e8e8e8;
    border-left: 0;
}

.mypage_2 a,
.mypage_2 .curr {
    font-family: arial;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
}

.mypage_2 .curr,
.mypage_2 a:hover {
    background-color: #eee;
    color: #666;
}

.mypage_2 .pre,
.mypage_2 .nex {
    font-size: 12px;
    font-family: "microsoft yahei";
    width: 64px;
    text-align: center;
}

.mypage_2>*:first-child,
.mypage_2>*:last-child {
    font-size: 12px;
    width: 64px;
    text-align: left;
    background-repeat: no-repeat;
}

.mypage_2>*:first-child {
    padding-left: 26px;
    border-left: solid 1px #e8e8e8;
    background-position: 12px center;
    background-image: url(../images/pre_pic.png);
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.mypage_2>*:last-child {
    padding-left: 12px;
    background-position: 47px center;
    background-image: url(../images/nex_pic.png);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}


/*筛选分页*/

#fenye {
    margin: 10px;
}

#fenye table {
    margin: auto;
}

#fenye .prev,
#fenye .next {
    text-align: center;
}

#fenye a.curr,
#fenye a:hover {
    background: var(--main_color);
    color: #FFFFFF;
}

#fenye a {
    background: #e8e8e8;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    border-radius: 3px;
}


/*Tag*/

.news_left {
    width: 900px;
}

.news_right {
    width: 280px;
}

.news_main {
    width: 100%;
    border: solid 1px #e8e8e8;
    padding: 20px;
    box-sizing: border-box;
}

.news_main .tit {
    font-size: 15px;
    border-bottom: solid 1px #ddd;
    height: 36px;
    font-weight: bold;
}

.side_box {
    margin-bottom: 20px;
    border: solid 1px #ddd;
    padding: 15px 15px 10px 15px;
    box-sizing: border-box;
}

.side_box h5 {
    font-size: 15px;
    color: #000;
    height: 36px;
    border-bottom: solid 1px #ddd;
    background: url(../images/hot.png) no-repeat left 3px;
    padding-left: 50px;
}

.side_box h6 {
    font-size: 15px;
    color: #000;
    height: 36px;
    border-bottom: solid 1px #ddd;
}


/*热门标签*/

.hot_tag {
    margin-top: .15rem;
}

.hot_tag a {
    background: #fff;
    padding: 0 10px;
    line-height: 32px;
    display: inline-block;
    margin: 0px 5px 8px 0;
    transition: 0.3s all;
    background: #eee;
}

.hot_tag a:hover {
    background: var(--main_color);
    color: #fff;
}


/*tags分页*/

.tag_list dl {
    padding: 20px 20px;
    height: 140px;
    border-bottom: dashed 1px #CCCCCC;
    transition: all 300ms ease-out 0s;
}

.tag_list dl:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
    transition: all 300ms ease-out 0s;
    background: #f8f8f8;
}

.tag_list dl dt {
    width: 240px;
    margin-right: 20px;
    height: 100%;
    overflow: hidden;
    float: left;
}

.tag_list dl dt a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.tag_list dl dt img {
    width: 100%;
}

.tag_list dl dd h5 {
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 5px;
}

.tag_list dl dd p {
    line-height: 24px;
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.tag_list dl dd i {
    font-size: 12px;
    font-style: normal;
    height: 35px;
    line-height: 35px;
    margin-right: 20px;
    display: inline-block;
    color: #666;
}

.tag_list dl dd i.n_time {
    background: url(../images/n_time.png) no-repeat left center;
    background-size: 23px auto;
    padding-left: 30px;
}

.tag_list dl dd i.n_tags {
    background: url(../images/tags_pic.png) no-repeat left center;
    background-size: 23px auto;
    padding-left: 30px;
}


/*新闻资讯*/


/*新闻内容左边开始*/

.new_left {
    width: calc(100% - 400px);
    margin-top: .25rem;
}

.new_title {
    display: block;
    font-size: 22px;
    font-weight: bold;
}

.new_title span {
    margin-right: 25px;
}

.new_title a {
    font-size: 16px;
    font-weight: normal;
    border-radius: 20px;
    padding: 5px 15px;
    transition: 0.3s all;
}

.new_title a.currclass,
.new_title a:hover {
    background: var(--main_color);
    color: #fff;
}


/*=========================文章列表========================*/

.art_list {
    margin-top: .5rem;
}

.art_list li {
    margin-bottom: .3rem;
}

.art_list li .art_l {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.art_list li .art_l img {
    width: 100%;
    display: block;
    border-radius: 0px;
}

.art_list li .art_r {
    width: 67%;
    position: relative;
}

.art_list li.nopic .art_r {
    width: 100%;
}

.art_list li .title {
    font-size: .2rem;
    line-height: 1.6;
    margin: .05rem 0 .15rem 0;
    display: inline-block;
    font-weight: bold;
}

.art_list li .ms {
    color: #999;
    line-height: 24px;
}

.art_list li .art_footer {
    position: absolute;
    left: 0;
    bottom: .1rem;
    right: 0;
}

.art_list li.nopic .art_footer {
    position: static;
    margin-top: 10px;
}

.art_list li .art_footer a,
.art_list li .art_footer p {
    color: #666;
    display: inline-block;
}

.art_list li .left_tool p {
    margin-right: 20px;
    padding-left: 20px;
    font-size: 12px;
}

.art_list li .left_tool p:nth-child(1) {
    background: url(../images/detail_img00.png) no-repeat left center;
}

.art_list li .left_tool p:nth-child(2) {
    background: url(../images/detail_img02.png) no-repeat left center;
    color: #999;
}

.art_list li .left_tool p:nth-child(3) {
    background: url(../images/detail_img03.png) no-repeat left center;
}

.art_list li .right_tool {
    background: url(../images/detail_img01.png) no-repeat left center;
    padding-left: 15px;
}

.art_list li .right_tool a {
    margin-left: 10px;
    font-size: 12px;
}


/*新闻内容右边开始*/

.new_list2 {
    width: 350px;
}

.new_rmfw {
    height: 30px;
    margin-top: 30px;
}

.new_rmfw span {
    display: block;
    width: 4px;
    height: 30px;
    background: #30c8c6;
    float: left;
}

.new_rmfw b {
    font-size: 23px;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    padding-left: 20px;
}

.rmfw_img {
    position: relative;
    width: 100%;
    height: 238px;
    border-radius: 3px;
    background-color: #000;
    top: 20px;
}

.rmfw_img img {
    position: relative;
    width: 100%;
    height: 100%;
}

.wbox {
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    left: 0;
}

.wbox p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    padding: 16px 24px;
}

.wbox p a {
    color: #ffffff;
}

.wbox p :hover {
    color: #30c8c6;
}


/*时间线*/

.timeline {
    position: relative;
    width: 350px;
    top: 20px;
}

.timeline li {
    position: relative;
    z-index: 1;
    height: 70px;
    padding-left: 45px;
    margin-top: 15px;
}

.timeline li .tit {
    font-size: 13px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 8px;
}

.sel {
    color: #30c8c6;
    text-decoration: underline;
}

.timeline li p {
    font-size: 13px;
    line-height: 22px;
    color: #666666;
}

.timeline li:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #b4ebea;
    position: absolute;
    left: 12px;
    top: 2px;
}

.timeline .line {
    width: 0;
    height: 76%;
    border-radius: 0;
    background-color: #ffffff;
    border: 1px dashed #b4ebea;
    position: absolute;
    left: 19px;
    top: 10px;
}


/*正方形广告*/

.ad {
    width: 350px;
    height: 200px;
    margin-top: 30px;
    border-radius: 4px;
    background: #CC6699;
}

.ad img {
    width: 350px;
    height: 200px;
    border-radius: 4px;
}

.tjwz li {
    height: 88px;
    margin-top: 20px;
}

.tjwz_img {
    width: 130px;
    height: 88px;
    border-radius: 0px;
    overflow: hidden;
    float: left;
    background: #000;
}

.tjwz_img img {
    max-height: 100%;
    min-width: 100%;
    opacity: 0.9;
    display: block;
}

.tjwz b {
    display: block;
    width: 198px;
    height: 44px;
    float: right;
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    font-weight: normal;
    margin-bottom: 5px;
    margin-top: 10px;
}

.tjwz em {
    font-style: normal;
    font-size: 13px;
    padding-left: 20px;
    color: #666666;
}


/*新闻内容页开始*/

.weizhi {
    min-width: 1200px;
    line-height: 60px;
    background: #f5f5f5;
}


/*新闻内容页左边*/

.page_main {
    width: calc(100% - 400px);
}


/*==============新闻详情=====================*/

.n_article {
    min-height: 730px;
}

.n_article .art_tit {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.n_article .art_tit h1 {
    font-size: 25px;
    padding-bottom: .1rem;
}

.art_info {
    margin-bottom: 25px;
    color: #888;
    border-bottom: solid 1px #e8e8e8;
    position: relative;
}

.art_info em {
    position: relative;
    font-size: 14px;
    display: inline-block;
    line-height: 60px;
    font-style: normal;
    margin-right: 25px;
}

.art_info em img {
    margin: -3px 5px 0 0;
    vertical-align: middle;
}

.art_info em a {
    color: #888;
}


/*share*/

.share-main {
    width: 102px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 15px;
    z-index: 10;
}

.share-main b {
    position: absolute;
    left: -80px;
    top: 10px;
    font-weight: normal;
}

.share-bar a {
    margin-left: 10px;
    margin-top: 5px;
    float: left;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-share.png);
}

.share-bar .share-tsina {
    background-position: 0 0;
}

.share-bar .share-weixin {
    background-position: -24px 0;
}

.share-bar .share-qzone {
    background-position: -48px 0;
}

.weixin-share-open {
    position: absolute;
    bottom: 34px;
    left: 0;
    display: none;
    background: #fff;
}

.weixin-wrap {
    padding: 10px;
    width: 234px;
    height: 102px;
    border: 1px solid #ddd;
}

.share-qrcode {
    float: left;
}

.share-qrcode img {
    display: block;
    width: 80px;
    height: 80px;
}

.weixin-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 16px;
    color: #d4d4d4;
    cursor: pointer;
}

.weixin-text {
    padding: 10px 0 0 90px;
    line-height: 24px;
    font-size: 12px;
    color: #666;
}


/*正文*/

#art_box {
    text-align: justify;
    font-size: 15px;
    line-height: 2;
}

#art_box p {
    margin-bottom: 15px;
}

#art_box img {
    max-width: 100%;
}

#art_box a {
    color: var(--main_color);
}

#art_box video {
    max-width: 100%;
}

.xg_news {
    margin-top: 50px;
}

.xg_news li {
    width: 32%;
    margin: 0 2% 20px 0;
}

.xg_news li:nth-child(3n) {
    margin-right: 0;
}

.xg_news li .pic {
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-bottom: 10px;
}

.xg_news li .pic img {
    width: 100%;
    opacity: 0.9;
    display: block;
}

.xg_news li p {
    line-height: 22px;
}


/*================资源样式=====================*/

.ziyuan_box .left {
    width: 260px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #f3f4f7;
    padding: 25px 15px 10px;
    box-sizing: border-box;
}

.ziyuan_box .left .tit {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
}

.ziyuan_box .left dl {
    margin-bottom: 20px;
    padding-left: 20px;
}

.ziyuan_box .left dt {
    font-size: 16px;
    font-weight: bold;
}

.ziyuan_box .left dt.curr a {
    color: var(--main_color);
}

.zy_con {
    padding: 10px 25px 25px 300px;
}

.zy_con .tit {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 25px;
}

.zy_con .list li {
    width: 32%;
    margin: 0 2% 20px 0;
}

.zy_con .list li:nth-child(3n) {
    margin-right: 0;
}

.zy_con .list li .pic {
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-bottom: 10px;
}

.zy_con .list li .pic img {
    width: 100%;
    opacity: 0.9;
    display: block;
}

.zy_con .list li p {
    line-height: 22px;
}

.zy_con .down li {
    margin-bottom: 10px;
}

.zy_con .down li img {
    vertical-align: middle;
}


/*================关于我们=====================*/

.about_01 {
    width: 60%;
    height: 580px;
    background: #fff;
    padding: .8rem 10% 0 8%;
    box-sizing: border-box;
}

.about_01 .p001 img {
    height: 66px;
    display: block;
}

.about_01 .p002 {
    font-size: 56px;
    line-height: 60px;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin-top: 0px;
    font-weight: 600;
}

.about_01 .p003 {
    margin-top: 0px;
    font-size: 18px;
    line-height: 36px;
    color: #3e3c36;
}

.about_01 .p004 {
    line-height: 28px;
    color: #666;
    text-align: justify;
    margin-top: 36px;
}

.about_01 .link_box {
    margin-top: 36px;
}

.about_01 .link_box a {
    display: inline-block;
    border: 1px solid #aaa;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.about_01 .link_box .link1 i {
    background: url(../images/ico_01.png) no-repeat center;
}

.about_01 .link_box .link2 i {
    background: url(../images/ico_06.png) no-repeat center;
}

.about_01 .link_box i {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
}

.about_01 .link_box .bg {
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease 0s;
    position: absolute;
    border-radius: 50%;
}

.about_01 .link_box a:hover {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
}

.about_01 .link_box a:hover .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--main_color);
}

.about_01 .link_box a.link1:hover i {
    background: url(../images/ico_01_h.png) no-repeat center;
}

.about_01 .link_box a.link2:hover i {
    background: url(../images/ico_06_h.png) no-repeat center;
}

.about_02 {
    width: 40%;
    height: 580px;
    background: #f2f2f2;
    padding: .8rem 2% 0 5%;
    box-sizing: border-box;
}

.about_02 .p001 {
    font-size: 25px;
    line-height: 46px;
    font-weight: bold;
    color: #333;
}

.about_02 .p002 {
    font-size: 18px;
    margin-top: 36px;
    color: #444;
}

.about_02 .p003 {
    margin-top: 36px;
    line-height: 32px;
    color: #444;
}


/*======================企业文化======================*/

.about_qyyj {
    margin-bottom: .8rem;
}

.about_qyyj li {
    width: 31%;
    border-radius: 0px;
    overflow: hidden;
    transition: .3s all;
    background: #fff;
    box-shadow: rgba(3, 43, 183, .1) 1px 3px 10px;
    box-sizing: border-box;
    margin-bottom: .25rem;
}

.about_qyyj li .pic img {
    width: 100%;
}

.about_qyyj li .txt {
    padding: 25px 30px 50px 30px;
}

.about_qyyj li h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: .2rem;
}

.about_qyyj li p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}


/*======================加入我们======================*/

.page_jion li {
    background: #f2f2f2;
    transition: all 300ms ease-out 0s;
    margin-bottom: .6rem;
}

.page_jion li:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    translate3d(0,
    -5px,
    0);
    -webkit-transform: translate3d(0, -5px, 0);
}

.page_jion li .txt {
    padding: 50px 5% 0 5%;
    box-sizing: border-box;
    width: 42%;
}

.page_jion li .txt h5 {
    font-size: 28px;
}

.page_jion li .txt p {
    line-height: 24px;
    margin-top: 25px;
    color: #666;
}

.page_jion li .pic {
    position: relative;
    overflow: hidden;
    width: 58%;
}

.page_jion li .pic img {
    width: 100%;
    display: block;
    transition: all 500ms ease-out 0s;
}

.link_a {
    margin-top: 10%;
}

.link_a a {
    display: inline-block;
    border: 1px solid #aaa;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.link_a a:hover {
    border: 1px solid #035CAC;
    background-color: #035CAC;
}

.link_a .bg {
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    transition: all 0.3s ease 0s;
    position: absolute;
    border-radius: 50%;
}

.link_a a:hover .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #035CAC;
}

.link_a a i {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
}

.link_a a.link_arr i {
    background: url(../images/ico_03.png) no-repeat center;
}

.link_a a.link_arr:hover i {
    background: url(../images/ico_03_h.png) no-repeat center;
}

.link_a a.link_mail i {
    background: url(../images/ico_01.png) no-repeat center;
}

.link_a a.link_mail:hover i {
    background: url(../images/ico_01_h.png) no-repeat center;
}

.link_a a.link_kf i {
    background: url(../images/ico_06.png) no-repeat center;
}

.link_a a.link_kf:hover i {
    background: url(../images/ico_06_h.png) no-repeat center;
}


/*营销型网站*/

.yingxiao h1 {
    text-align: center;
}

.yingxiao span {
    display: block;
    width: 80px;
    height: 2px;
    margin: 20px auto;
    background: var(--main_color);
}

.yingxiao h3 {
    text-align: center;
}

.yingxiao li {
    width: 33.3%;
    height: 500px;
    float: left;
    margin-top: 50px;
}

.tupian li {
    text-align: center;
}

.wenzi {
    background: url(../images/yingxiao_55-04.jpg) no-repeat;
}

.wenzi .wz1 {
    margin: 15px 50px;
}

.wenzi .wz1 p {
    font-size: 14px;
    line-height: 26px;
    color: #d81d07;
}

.wenzi .wz2 {
    margin: 220px 50px;
}

.wenzi .wz2 p {
    font-size: 14px;
    line-height: 26px;
    color: #222222;
}

.wenti {
    height: 330px;
    margin-top: 70px;
}

.tp {
    float: left;
    height: 350px;
}

.tp-right {
    float: right;
    width: 700px;
    height: 330px;
}

.tp-right p {
    font-size: 20px;
    color: #333;
    text-align: right;
    margin-top: 90px;
}

.tp-right h5 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-top: 17px;
    margin-bottom: 17px;
    text-align: right;
}

.tp-right h5 span {
    display: block;
    font-size: 14px;
    color: #9f9f9f;
    margin-top: 5px;
    font-weight: normal;
    text-align: right;
}

.tp-right h4 {
    font-size: 28px;
    color: #fff;
    font-weight: normal;
    background: url(../images/yy.png) no-repeat center;
    width: 565px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    float: right;
}

.bg-tupian {
    background: url(../images/choisebg.jpg) no-repeat center;
    height: 1120px;
}

.bg-wenzi {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.bg-wenzi h2 {
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top: 60px;
}

.bg-wenzi h3 {
    font-size: 34px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.bg-wenzi h3 span {
    color: #fff600;
}

.bg-wenzi h3 em {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

.bg-wenzi a {
    font-size: 15px;
    color: #fff;
    background: url(../images/mor.png) no-repeat 670px center;
    height: 20px;
    line-height: 20px;
}

.bg-wenzi1 {
    width: 1200px;
    margin: 620px auto;
}

.bg-wenzi1 span {
    font-size: 24px;
    color: #fff;
    display: block;
    padding-top: 30px;
    padding-bottom: 10px;
}

.bg-wenzi1 h5 {
    font-size: 40px;
    color: #fff600;
    font-weight: bold;
}

.bg-wenzi1 a {
    font-size: 24px;
    color: #120e00;
    background: url(../images/yy2.png) no-repeat center;
    width: 372px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
}

.xiaozi {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
}

.bg-tupian1 {
    background: url(../images/vtopbg.jpg) no-repeat center;
    height: 1373px;
}

.bg-wz p {
    font-size: 20px;
    color: #595959;
    text-align: center;
    padding-top: 60px;
}

.bg-wz h5 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.bg-wz h5 span {
    color: #fe5b00;
}

.bg-wz h5 em {
    display: block;
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
    text-align: center;
}

.bg-wz i {
    display: block;
    background: url(../images/line2.png) no-repeat center;
    width: 69px;
    height: 3px;
    margin: 0 auto;
}

.font {
    background: #0058ac;
    color: #fff;
    display: block;
    border-radius: 5px;
    padding: 20px 0px;
    text-align: center;
    line-height: 25px;
    font-size: 15px;
    margin-top: 35px;
}

.bn2 {
    background: url(../images/bn2.jpg) no-repeat center;
    margin: 0 auto;
    height: 350px;
}

.clearfix {
    width: 1200px;
    height: 350px;
    margin: 0 auto;
    padding-top: 30px;
    overflow: hidden;
}

.clearfix dt {
    float: left;
    padding-top: 30px;
}

.clearfix dd {
    padding-left: 0px;
    padding-top: 30px;
}

.clearfix dd em {
    font-size: 20px;
    color: #fff;
}

.clearfix dd p {
    padding: 15px 0;
    line-height: 24px;
    font-size: 15px;
    color: #fff;
}

.clearfix dd h5 {
    height: 32px;
    line-height: 32px;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.choose {
    font-size: 18px;
    margin-top: 30px;
    color: #333333;
    text-align: center;
    width: 301px;
    height: 42px;
    line-height: 42px;
    background: url(../images/mbtx1.png) no-repeat center;
}


/*小程序APP*/

.cxone {
    width: 1200px;
    margin: 0 auto;
    height: 440px;
}

.cxone h5 {
    font-weight: normal;
    text-align: center;
    font-size: 20px;
    color: 3333333;
    padding-top: 30px;
}

.cx1ul li {
    width: 285px;
    overflow: hidden;
    float: left;
    margin: 7px;
    text-align: center;
    box-shadow: 0 0 10px #eee;
    border-radius: 10px;
    padding-bottom: 20px;
    margin-top: 50px;
}

.cx1ul li h3 {
    font-size: 24px;
    color: #333;
    margin-top: 10px;
    font-weight: normal;
}

.cx1ul li p {
    font-size: 14px;
    color: #999;
    line-height: 20px;
    margin-top: 10px;
}


/*小程序运维平台改变产品生命与周期*/

.cxtwo {
    width: 100%;
    height: 470px;
    padding: 50px 0px;
    background: #f6f6f6;
    margin-top: 50px;
}

.cx2title {
    color: #333;
    text-align: center;
}

.cx2title h2 {
    font-size: 40px;
}

.cx2title h2 span {
    color: #44b549;
}

.cx2ul {
    width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 45px;
}

.cx2ul li {
    width: 270px;
    height: 345px;
    background: #fff;
    text-align: center;
    float: left;
    margin: 0px 20px;
    position: relative;
    transition: 0.5s;
    border-radius: 10px;
}

.cx2ul li img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.hua1 {
    top: 30px;
    opacity: 1;
}

.hua2 {
    top: 55px;
    opacity: 0;
}

.cx2ul li:hover {
    height: 270px;
    background: #44b549;
    margin-top: 75px;
    padding-top: 0;
}

.cx2ul li:hover .hua2 {
    top: -75px;
    opacity: 1;
}

.cx2ul li:hover .hua1 {
    opacity: 0;
}

.cx2ul li:hover p {
    color: #fff;
}

.cx2ul li:hover h3 {
    margin-top: 120px;
    color: #fff
}

.cx2ul li h3 {
    color: #333;
    font-size: 24px;
    margin: 230px 0px 10px 0px;
}

.cx2ul li p {
    font-size: 14px;
    color: #999;
    line-height: 22px;
}


/*微信小程序为什么选明图团队*/

.cxthree {
    width: 1200px;
    margin: 0 auto;
    padding: 0 auto;
    padding: 60px 0px 90px 0px;
    overflow: hidden;
    background: url(../images/index_17.png)center top 180px no-repeat;
}

.cx_title {
    text-align: center;
    color: #333;
}

.cx_title h2 {
    font-size: 40px;
}

.cx_title p {
    font-size: 18px;
    margin-top: 15px;
}

.cxthree ul {
    margin-top: 50px;
}

.cxthree ul li {
    width: 265px;
}

.cxthree ul li div {
    font-size: 26px;
    color: #333;
}

.cxthree ul li p {
    font-size: 16px;
    color: #999;
    line-height: 23px;
    margin-top: 10px;
}

.mtb {
    margin-top: 100px;
    margin-bottom: 80px;
}


/*满足各行业用户需求*/

.cxfour {
    width: 100%;
    padding: 50px 0px;
    overflow: hidden;
    background: #f6f6f6;
}

.cx2title {
    color: #333;
    text-align: center;
}

.cx2title h2 {
    font-size: 40px;
}

.case-wrap {
    width: 1230px;
    margin: 0 auto;
    padding: 0 auto;
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 20px;
}

.case-wrap .case-item {
    width: 320px;
    height: 110px;
    float: left;
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin: 0px 15px;
    margin-top: 30px;
}

.case-wrap .case-item span {
    float: left;
    width: 80px;
    height: 110px;
    display: block;
}

.case-wrap .case-item span em {
    width: 80px;
    height: 90px;
    display: block;
}

.case-wrap .case-item div {
    float: right;
    width: 220px;
    height: 110px;
}

.case-wrap .case-item div h4 {
    font-size: 30px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    display: block;
}

.case-wrap .case-item div p {
    color: #999;
    height: 60px;
    padding-top: 10px;
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.case-wrap .case-item.img {
    width: 380px;
    height: 160px;
    padding: 0;
}

.case-wrap .case-item:hover {
    box-shadow: 0 0 15px #cccccc;
}

.cxsix {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    background: url(../images/bg1.png) #44b549 center top no-repeat;
}

#wrapper {
    width: 1200px;
    height: 545px;
    margin: 0 auto;
    position: relative;
}

#carousel {
    width: 1200px;
}

#carousel li {
    width: 280px;
    height: 545px;
    float: left;
    margin: 0 10px;
    overflow: hidden;
    text-align: center;
}

#carousel .qiehuan1 {
    background-position: center;
    left: -40px;
}

#carousel .qiehuan1,
#carousel .qiehuan2 {
    background: transparent url(../images/carousel_control.png) no-repeat 0 0;
    overflow: hidden;
    width: 15px;
    height: 21px;
    margin-left: 10px;
    position: absolute;
    top: 300px;
}

#carousel .qiehuan2 {
    background-position: -18px 0;
    right: -30px;
}

.cx6ul {
    width: 1260px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 40px;
}

.cx6ul li {
    width: 150px;
    float: left;
    margin: 15px 30px;
}

.cx6ul2 {
    width: 1220px;
    margin: 0 auto;
    margin-top: 40px;
    overflow: hidden;
}

.cx6ul2 li {
    width: 160px;
    float: left;
    margin: 0px 7px;
    position: relative;
}

.cx6ul2 li p {
    position: absolute;
    bottom: 20px;
    left: 45px;
}


/*手机站*/

.title-web {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #333;
    text-align: center;
}

.title-web h2 {
    font-size: 34px;
}

.phone-web {
    width: 1200px;
    height: 930px;
    margin: 0 auto;
}

.phone-web li {
    float: left;
    width: 600px;
    height: 400px;
}

.phone-web li img {
    text-align: center;
}

.phone-web1 {
    height: 520px;
    background: #f5f5f5;
}

.phone-web1-img {
    width: 1200px;
    height: 520px;
    margin: 0 auto;
    text-align: center;
}

.website-case {
    width: 100%;
    padding: 10px 0 50px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.title-web {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #333;
    text-align: center;
}

.title span {
    display: block;
    margin: 10px auto;
    width: 80px;
    height: 2px;
    background: #ff5b00;
}

.title-web h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: normal;
}

.title-web h3 em {
    color: #ff5b00;
}

.website-case ul {
    width: 1216px;
    margin: 0 auto;
}

.website-case ul li {
    width: 270px;
    height: 222px;
    float: left;
    border: 7px solid #e4e4e4;
    margin: 0px 20px 0 0;
    box-shadow: 5px 5px 10px #ccc;
}

.website-case ul li img {
    width: 270px;
    height: 189px;
    display: block;
}

.website-case ul li h5 {
    width: 100%;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    background: #ff7300;
    overflow: hidden;
}


/*网站维护*/

.w_tcjs {
    margin: 0 auto;
    width: 1200px;
}

.pro_xq_r {
    height: 70px;
    padding-top: 50px;
    overflow: hidden;
}

.pro_xq_r .js {
    width: 300px;
    line-height: 70px;
}

.pack_xq_top {
    height: 450px;
}

.pro_xq_r h2 {
    line-height: 60px;
    font-family: "microsoft yahei";
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.proShowTab {
    width: 468px;
    overflow: hidden;
}

.fr,
.right {
    float: right;
    display: inline;
}

.pack_xq_top {
    height: 450px;
}

.pack_xq_left {
    width: 560px;
}

.pack_xq_menu {
    height: 51px;
}

.pack_xq_title {
    font-size: 24px;
    padding-right: 15px;
    line-height: 42px;
    color: #ff7300;
    font-weight: bold;
}

.pack_xq_t_txt {
    height: 165px;
    font-size: 16px;
    line-height: 28px;
}

.pack_t_txt {
    height: 72px;
    overflow: hidden;
    padding-top: 15px;
}

.pack_t_tcjj {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
}

.pack_xq_jiage {
    width: 116px;
    height: 72px;
    background: url(../images/tc_02.png) no-repeat;
    color: #fff;
    text-align: center;
    line-height: 60px;
}

.pack_xq_jiage span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    padding: 0px 4px;
}

.pack_t_tel {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    padding-left: 20px;
}

.pack_t_tel span {
    color: #F00;
}

.pack_qq span {
    float: left;
    font-size: 20px;
    padding: 25px 0px 0px 0px;
}

.pack_xq_img {
    width: 500px;
}

.pack_xq_img img {
    width: 500px;
    height: 350px;
}

.w_taocan {
    background: #f4f4f4;
    background-repeat: repeat;
    background-position: center top;
    height: 496px;
}

.w_taocan p {
    font-size: 32px;
    color: #333;
    text-align: center;
    line-height: 72px;
    height: 72px;
    padding-top: 30px;
}

.w_taocan h3 {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
    background: url(../images/title_bg.png) no-repeat center bottom;
    font-weight: normal;
    margin-bottom: 20px;
}

.w_taocan h3 em {
    color: #ff5b00;
}

.w_tlbnr {
    width: 1200px;
    margin: 0px auto;
}

.w_tlbnr dl {
    width: 380px;
    margin-right: 30px;
    display: inline;
    float: left;
    margin-bottom: 20px;
    overflow: hidden;
}

.w_tlbnr dl dt {
    display: block;
    width: 380px;
    height: 170px;
}

.w_tlbnr dl dd {
    display: block;
    padding: 0px;
}

.w_tlbnr dl dd strong {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #333;
    border-bottom: 2px #e6e6e6 solid;
}

.w_tlbnr dl dd span {
    display: block;
    margin-top: 15px;
    color: #999;
    line-height: 20px;
    padding-bottom: 10px;
}


/*更多*/

.lookmore {
    text-align: center;
}

.lookmore a {
    display: inline-block;
    border: #222 1px solid;
    border-radius: 22px;
    padding: 10px 40px;
    color: #333;
    position: relative;
    overflow: hidden;
    transition: 0.5s all;
}

.lookmore a span {
    position: relative;
    z-index: 10
}

.lookmore a:hover {
    color: #fff;
    border: var(--main_color) 1px solid;
    background: var(--main_color);
    transition-delay: 0.36s
}

@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

.btn-11 {
    position: relative;
    color: #9a7cba;
}

.btn-11:before,
.btn-11:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background: var(--main_color);
    border-radius: 50%;
}

.btn-11:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*     animation: criss-cross-left 0.8s reverse; */
}

.btn-11:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    /*     animation: criss-cross-right 0.8s reverse; */
}

.btn-11:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
}

.btn-11:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
}


/**/

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

.btn_flash .anim {
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.btn_flash .anim:before {
    position: relative;
    content: '';
    display: block;
    margin-top: 100%;
}

.btn_flash .anim:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
}

.btn_flash:hover .anim {
    -moz-animation: anim-out 0.75s;
    -webkit-animation: anim-out 0.75s;
    animation: anim-out 0.75s;
}

.btn_flash:hover .anim:after {
    -moz-animation: anim-out-pseudo 0.75s;
    -webkit-animation: anim-out-pseudo 0.75s;
    animation: anim-out-pseudo 0.75s;
}

@-webkit-keyframes anim-out-pseudo {
    0% {
        background: rgba(255, 255, 255, 0.25);
    }
    100% {
        background: transparent;
    }
}

@-moz-keyframes anim-out-pseudo {
    0% {
        background: rgba(255, 255, 255, 0.25);
    }
    100% {
        background: transparent;
    }
}

@-ms-keyframes anim-out-pseudo {
    0% {
        background: rgba(255, 255, 255, 0.25);
    }
    100% {
        background: transparent;
    }
}

@keyframes anim-out-pseudo {
    0% {
        background: rgba(255, 255, 255, 0.25);
    }
    100% {
        background: transparent;
    }
}

@-webkit-keyframes anim-out {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-moz-keyframes anim-out {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-ms-keyframes anim-out {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes anim-out {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}


/*弹窗*/

.tc {
    transition: all ease 300ms;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tc {
    pointer-events: none;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transform: scale(1.1);
}

.tc.act {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.tc-bg {
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}


/*留言弹窗*/

.buy_form {
    width: 8.6rem;
    height: 6rem;
    padding: .5rem .8rem;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: auto;
}

.buy_form .close {
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}

.buy_form .tit {
    font-size: .36rem;
    color: #000;
    margin-bottom: .15rem
}

.buy_form .info {
    line-height: 2;
    font-size: .16rem;
    color: #666;
    height: .5rem;
}

.buy_form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.buy_form li {
    font-size: .15rem;
    margin-bottom: .15rem;
    width: 49%;
}

.buy_form input {
    padding: .2rem;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 2px;
    font-size: .16rem;
}

.buy_form textarea {
    padding: .2rem;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .1);
    height: 125px;
    border-radius: 2px;
    font-size: .16rem;
    font-family: "微软雅黑";
}

.buy_form .form-group {
    width: 100%;
}

.buy_form .form-group input {
    width: 49%;
    margin-right: 1%;
    margin-bottom: .2rem;
}

.buy_form .submit {
    border: none;
    font-size: .2rem;
    cursor: pointer;
    text-align: center;
    color: #fff;
    background: var(--main_color);
    border-radius: 3px;
    transition: 0.3s all;
    width: 100%;
    height: .6rem;
    line-height: .6rem;
}


/*弹窗 用户注册、登录、找回密码*/

.tc_box {
    width: 500px;
    background: #fff;
    /*min-height:480px;*/
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tc_box .head {
    height: 56px;
    background: #f0f0f0;
    padding: 16px 20px;
    box-sizing: border-box;
    font-size: 20px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}

.tc_box .close {
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
}

.tc_box .close img {
    height: 20px;
}

.form_box .tit {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form_box .tit li {
    height: 50px;
    font-size: 16px;
    display: inline-block;
    margin: 0 25px;
}

.form_box .tit li a {
    display: block;
    line-height: 50px;
    transition: 0.5s all;
    position: relative;
    color: #333;
    text-decoration: none;
}

.form_box .tit li.active a:after {
    content: "";
    width: 52px;
    height: 4px;
    border-radius: 10px;
    background: #333;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.form_box .con {
    display: none;
}

.form_box .con.active {
    display: block;
}

.form_box .p1 {
    text-align: center;
    margin-top: 15px;
}

.form_box .p2 {
    text-align: center;
    margin-top: 15px;
}


/*注册登录表单*/

.form_box {
    width: 330px;
    margin: auto;
}

.form_box .con li,
.form_box .con .form-actions {
    margin-top: 15px;
    position: relative;
}

.form_box .con li input {
    background: #fff;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    height: 46px;
    line-height: 46px;
    outline: none;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.form_box .con li input:focus,
.form_box .con li input:hover {
    border: solid 1px #ea4335;
}

.form_box .con li .yzm {
    position: absolute;
    padding: 0 10px;
    top: 0px;
    right: 0px;
    border-left: solid 1px #dcdfe6;
    transition: .2s all;
}

.form_box .code_yzm li input {
    width: 190px
}

.form_box .con button {
    width: 100%;
    height: 46px;
    background: var(--main_color);
    border: none;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    outline: none;
    border-radius: 3px;
}

.form_box .con .sms_btn {
    width: 125px;
    line-height: 46px;
    background: var(--second_color);
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 3px;
    text-decoration: none;
}


/*用户注册、登录、找回密码*/

.user_bg {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: url(../images/n_user_bg1.jpg) center no-repeat;
    background-size: cover;
}

.user_form_box {
    width: 500px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    box-sizing: border-box;
}

.user_form_box .head {
    height: 56px;
    background: #f6f6f6;
    padding: 16px 20px;
    margin-bottom: 40px;
    text-align: center;
    box-sizing: border-box;
    font-size: 20px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}

.form_box .p1 {
    margin-top: 25px;
}

.form_box .p1 a {
    text-decoration: underline;
}

.u_footer {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-size: 13px;
}


/*用户注册协议*/

.reg_xieyi {
    background: #fff;
    padding: 25px;
    line-height: 2;
}

.reg_xieyi p {
    margin-bottom: 5px;
    text-align: justify;
}


/*右侧悬浮*/

.cndns-right {
    position: fixed;
    right: 2px;
    bottom: 35%;
    z-index: 999;
}

.cndns-right-meau {
    position: relative;
    margin: 0 0 5px
}

.cndns-right-btn {
    width: 44px;
    height: auto;
    overflow: hidden;
    padding: 11px 0;
    text-align: center;
    display: block;
    position: relative;
    background-color: var(--main_color);
    border-radius: 5px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}

.meau-contact .cndns-right-btn {
    background-color: #666;
}

.cndns-right-btn p {
    font-size: 12px;
    line-height: 16px;
    padding-top: 6px;
    color: #fff;
    margin: 0 auto
}

.demo-icon {
    width: 22px;
    height: 22px;
    display: block;
    background: url(../images/fuDong1.png) no-repeat;
    margin: 0 auto
}

.demo-icon1 {
    background-position: 0 0
}

.demo-icon2 {
    background-position: 0 -22px
}

.demo-icon3 {
    background-position: 0 -88px
}

.demo-icon4 {
    background-position: 0 -66px
}

.cndns-right-box {
    position: absolute;
    top: 0;
    right: 29px;
    padding-right: 25px;
    display: none
}

.cndns-right-box:after {
    content: '';
    position: absolute;
    right: 18px;
    top: 15px;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-right: 1px solid rgba(0, 0, 0, .08);
    transform: rotate(45deg)
}

.cndns-right-btn:hover {
    background-color: #f90
}

.cndns-right-box .box-border {
    padding: 20px 30px 24px;
    width: 200px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .15);
    box-shadow: 0 0 8px rgba(0, 0, 0, .15);
    position: relative
}

.meau-cord .cndns-right-box .box-border {
    width: 260px;
    padding: 20px;
    text-align: center;
}

.meau-cord .cndns-right-box .box-border img {
    width: 125px;
}

.box-border p {
    font-size: 18px;
    color: var(--main_color);
    line-height: 32px;
    margin: 0
}

.box-border p a {
    font-size: 14px;
    color: #666;
    line-height: 32px;
    display: block;
}

.box-border .wz1 {
    font-size: 18px;
    color: #333;
    padding: 0 0 8px
}

.box-border .wz2 svg {
    fill: var(--main_color);
    width: 20px;
}

.box-border .wz2 p {
    font-weight: 600;
}

.cndns-right-meau:hover .cndns-right-box {
    display: block
}

#top-back {
    transition: 0.5s all;
    overflow: hidden;
    height: 44px;
    opacity: 1;
}

#top-back.hide {
    height: 0;
    opacity: 0;
}


/*向上*/

.cd-top {
    display: inline-block;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 50px;
    right: 8px;
    border-radius: 50%;
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    z-index: 9;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.15) url(../images/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    /* 如果用户继续向下滚动,这个按钮的透明度会变得更低 */
    opacity: .8;
}

.no-touch .cd-top:hover {
    background-color: var(--main_color);
    opacity: 1;
}

.cd-top:hover {
    background-color: var(--main_color);
    transition: all 0.3s ease 0s;
}