@keyframes image_content {
    0% {
        transform: translateX(-100%);
        filter: blur(5px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        filter: none;
        opacity: 1;
    }
}


@keyframes image_content_right {
    0% {
        transform: translateX(100%);
        filter: blur(5px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        filter: none;
        opacity: 1;
    }
}

@keyframes image_content_bottom{
    0% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes image_content_stop {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    /* 设置元素结束时的大小 */
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/**
动画
 */
.lyj_animation_bottom{
    animation: image_content_bottom 1s ease-out;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lyj_animation_stop{
    animation: image_content_stop 1s ease-out;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lyj_animation_left{
    animation: image_content 1s ease-out;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lyj_animation_right{
    animation: image_content_right 1s ease-out;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.lyj_animation_scale-up{
    animation: scale-up 1s ease-out;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}


html,
body {
    height: 100%;
    width: 100%;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea {
    font: 12px/1 "Microsoft YaHei","微软雅黑","arial","tahoma","MicrosoftJhengHei", "sans-serif";
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased!important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #474157;
}
a{text-decoration:none}
a:hover{
    color: #000088;
}

a:hover,
a:focus {
    color: #474157;
}

hr {
    max-width: 100px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, 0.1);
}

hr.light {
    border-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
    letter-spacing: 1px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}


#mainbody {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow-y: hidden;
    background: #f1f6fd;
    color: #474157;
    height: calc(100vh - 61px);
}

#mainbody > .container > .text-center {
    text-align: center;
    padding: 350px 0 50px;
    position: relative;
    height: 100vh;
}

#mainbody > .container > .text-center h1 {
    font-size: 50px;
    font-weight: bold;
    color: #171347
}

#mainbody > .container > .text-center > a {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
    text-decoration: none;
}

@media (max-height: 500px) {
    #mainbody {
        height: inherit;
    }
}

@media (min-width: 768px) {
    .navbar-default {
        background-color: transparent;
        border-color: transparent;
    }

    #mainbody .index-text {
        text-align: left;
    }
}

@media (max-width: 767px) {

    #mainbody > .container > .text-center {


        padding: 130px 0 0 0;
        height: calc(100vh - 261px);
    }

    #mainbody > .container > .text-center > h1 {


        font-size: 50px;
        margin-bottom: 20px;
    }
}

.footer {
    background-color: #222222;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin: 0;
}

ul{
    margin: 0;
    padding: 0;
    height: 74px;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

li{
    list-style: none;
}


.lyj_image{
    width: 100%;
    height: 700px !important;
    background: #3d92fa;
    margin-top: 80px;
    background-image: url("../../assets/img/banner_img.png");
    background-position: 50% 50%;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

.lyj_image_dis{
    width: 1200px;
    height: 600px !important;
    margin: auto;
    position: relative;
}
.image_img{
    width: 448px;
    height: 310px;
    position: absolute;
    right: 0px;
    top: 143px;
}

.image_content{
    position: absolute;
    top: 133px;
    /*animation: image_content 1s ease-out;*/
    /*animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);*/
}

.image_content p{
    padding: 0px;
    margin: 0px;
}

.lyj_p_01{
    font-size: 53px;
    font-weight: 900;
}

.lyj_p_02{
    font-size: 20px;
}

.lyj_color_01{
    color: #ffffff;
}

.lyj_a_button_01{
    padding: 10px 30px;
    background: #fff;
    font-size: 20px;
    border-radius: 20px;
    color: #3d92fa;
    font-weight: 900;
}

.lyj_a_button_02{
    padding: 10px 30px;
    background: #3d92fa;
    font-size: 20px;
    border-radius: 20px;
    margin-left: 30px;
    font-weight: 900;
    border: 2px solid #fff;
    color: #fff;
}

.lyj_a_button_02:hover{
    background: #fff;
    color: #3d92fa;
}


.lyj_fw{
    width: 100%;
}

.lyj_fw_dis{
    width: 1200px;
    height: 400px !important;
    margin: auto;
    margin-top: 60px;
}

.fw_dis_list{
    width: 33%;
    height: 400px;
    float: left;
    position: relative;
    padding: 0px 20px;
    cursor:pointer;
}

.fw_dis_list img{
    display: block;
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

.fw_dis_list .fw_dis_list_content{
    position: absolute;
    height: 130px;
    background: #adadad96;
    bottom: 0px;
    left: 40px;
    padding: 20px;
}


.fw_dis_list:hover .fw_dis_list_content{
    background: #FFFFFF;
}

.fw_dis_list .fw_dis_list_content p{
    padding: 0px;
    margin: 0px;
}
p.fw_dis_list_content_title{
    font-size: 26px;
    font-weight: 900;
}


.lyj_idea{
    width: 100%;
}

.lyj_idea_dis{
    width: 1200px;
    height: 550px !important;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
}

.lyj_idea_dis .idea_dis_title{
    width: 591px;
    margin: auto;
}
.lyj_idea_dis .idea_dis_title p{
    padding: 0px;
    margin: 0px;
}
.lyj_idea_dis .idea_dis_title p.title{
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 20px !important;
}
.lyj_idea_dis .idea_dis_title p.dis{
    font-family: Source Han Sans;
    color: #777777;
    font-size: 16px;
}

.lyj_idea_dis .idea_dis_title div.dis {
    width: 60px;
    background: #2b3e9e;
    height: 5px;
    text-align: center;
    margin: auto;
}

.lyj_idea_dis .idea_dis_content{
    height: 410px;
    width: 100%;
}


.lyj_idea_dis .idea_dis_content .idea_dis_content_list{
    width: 25%;
    height: 410px;
    float: left;
    padding: 42px;
}
.lyj_idea_dis .idea_dis_content .idea_dis_content_list .top{
    padding: 60px 0px;
}
.lyj_idea_dis .idea_dis_content .idea_dis_content_list .title{
    font-size: 18px;
    font-weight: bold;
    color: #444444;
    text-align: center;
    height: 30px;
}
.lyj_idea_dis .idea_dis_content .idea_dis_content_list .dis{
    line-height: 2;
    color: #777777;
    text-align: justify;
    font-size: 16px;
}


.lyj_cooperate{
    width: 100%;
}

.lyj_cooperate_dis{
    width: 1200px;
    height: 400px !important;
    margin: auto;
    margin-top: 88px;
    text-align: center;
}

.lyj_cooperate_dis .cooperate_dis_title{

}

.lyj_cooperate_dis .cooperate_dis_title p.title{
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 10px;
}
.lyj_cooperate_dis .cooperate_dis_title div.dis{
    width: 60px;
    background: #2b3e9e;
    height: 5px;
    text-align: center;
    margin: auto;
}
.lyj_cooperate_dis .cooperate_dis_content{
    margin-top: 50px;
}
.lyj_cooperate_dis .cooperate_dis_content_list{
    float: left;
    width: 25%;
    height: 150px;
    padding: 42px;
    border: 1px solid #e1e1e19c;
}

.lyj_bottom{
    width: 100%;
    background: #fafafa;
}

.lyj_bottom_dis{
    width: 1200px;
    height:290px !important;
    margin: auto;
    text-align: center;
}
.bottom_dis_top{
    height: 140px;
    display: block;
    margin-bottom: 10px;
    color: #666;
    font-size: 13px;
    font-family: 'Noto Sans CJK';
    font-weight: 400;
    text-decoration: none;
    font-style: normal;
    padding-top: 20px;
}
.bottom_dis_top .dis_top_list{
    float:left;
    width: 500px;
    text-align: left;

}
.bottom_dis_top .dis_top_list ul{
    width: 400px;
    float: left;
    margin-top: 20px;
}
.bottom_dis_top .dis_top_list ul li{
    font-size: 16px;
    padding: 20px 0px;
}

.bottom_dis_top .dis_top_list ul li .company-info-text{
    padding-left: 5px;
}
.bottom_dis_top .dis_top_right{
    float:right;
}

.bottom_dis_b{
    width: 100%;
    height: 70px;
}

.bottom_dis_b ul{
    width: 320px;
    float: right;
}
.bottom_dis_b ul li{
    float: left;
    padding: 10px;
    line-height: 70px;
}

.bottom_dis_text{
    text-align: center;
    height: 30px;
    width: 100%;
    line-height: 30px;
    color: rgb(152, 152, 152);
    clear: both;
    font-size: 16px;
}


.lyj_list_image {
    height: 400px !important;
}

.lyj_list_image .lyj_image_dis{
    height: 400px !important;
}
.lyj_list_image .lyj_image_dis .image_img{
    top:120px !important;
}
.lyj_list_image .lyj_image_dis .image_img img{
    width: 365px !important;
    height: 231px !important;
}

/**
列表页
 */
.lyj_list_idea_dis{
    height: 330px;
    margin-top: 20px;
    font-size: 14px;
}

.lyj_list_idea_dis_left,.lyj_list_idea_dis_right{
    width: 50%;
    float: left;
}

.lyj_list_idea_dis_right{
    text-align: left;
}

/**
列表也2
 */
.lyj_list_sc_left{
    width: 50%;
    float: left;
    animation: image_content 0.5s ease;
}

.lyj_list_sc_right{
    width: 50%;
    float: left;
    animation: image_content_right 0.5s ease;
}


.lyj_list_sc_left .jjfa_list{
    height: 246px;
    width: 278px;
    float: left;
    border-right: 1px none #cccccc;
    border-top: 0px none #cccccc;
    border-bottom: 1px none #cccccc;
    border-left: 0px none #cccccc;
    border-radius: 0px;
    background-color: #ffffff;
    background-image: none;
    background-repeat: repeat;
    background-position: 0 0;
    box-shadow: 0 0 0 transparent;
    box-shadow: 0px 5px 12px rgb(0 0 0 / 16%);
    margin: 10px;
    text-align: left;
    position: relative;
}
.lyj_list_sc_left .jjfa_list:hover{
    cursor: pointer;
    transform: translateY(-3px);
    background-color: #FFF;
    background-image: none;
    background-position: 0 0;
    background-repeat: no-repeat;
    background: -moz-linear-gradient(top, none, none);
    background: -o-linear-gradient(top, none, none);
    background: linear-gradient(top, none, none);
    background: -webkit-gradient(linear, left top, left bottom, from(none), to(none));
    background-size: auto;
    border-top: 0px none #eee;
    border-bottom: 1px none #eee;
    border-right: 1px none #eee;
    border-left: 0px none #eee;
    -webkit-box-shadow: 0px 5px 12px rgb(102 102 102 / 16%);
    -moz-box-shadow: 0.000000px 5.000000px 12px rgba(102, 102, 102, 0.16);
    -ms-box-shadow: 0.000000px 5.000000px 12px rgba(102, 102, 102, 0.16);
    box-shadow: 0px 5px 12px rgb(102 102 102 / 16%);
    transition: box-shadow .3s, border .3s, background-color .3s, color .3s, transform .3s;
}



.lyj_list_sc_left .jjfa_list .jjfa_list_img{
    position: absolute;
    height: 53px;
    width: 57px;
    left: 30px;
    top: 57px;
    z-index: 2;
}

.lyj_list_sc_left .jjfa_list .jjfa_list_title{
    position: absolute;
    height: 19px;
    width: 100%;
    left: 30px;
    top: 129px;
    z-index: 3;
    font-weight: 900;
    font-size: 14px;
}


.lyj_list_sc_left .jjfa_list .jjfa_list_dis{
    position: absolute;
    height: 47px;
    width: 221px;
    left: 28px;
    top: 157px;
    z-index: 3;
    color: #777777;
    line-height: 1.75;
    font-size: 14px;
}

.lyj_list_sc_right {
    text-align: right;
    position: relative;
    width: 450px;
    float: right;
    margin-top: 100px;
}
.lyj_list_sc_right .jjfa_list_title{
    position: absolute;
    font-size: 22px;
    color: #cccccc;
    height: 30px;
    width: 100%;
    left: 7px;
    top: 24px;
    z-index: 31;
    opacity: 1;
}
.lyj_list_sc_right .jjfa_list_title_two{
    position: absolute;
    height: 36px;
    width: 100%;
    left: 7px;
    top: 73px;
    z-index: 31;
    opacity: 1;
    color: #000000;
    font-size: 30px;
}
.lyj_list_sc_right .jjfa_list_title_dis{
    position: absolute;
    height: 105px;
    width: 100%;
    left: 8px;
    top: 142px;
    z-index: 32;
    opacity: 1;
    line-height: 2;
    color: #777777;
    font-size: 16px;
    text-align: left;
    text-indent: 20px;
}

.lyj_list_sc_right .jjfa_list_title_a{
    position: absolute;
    height: 50px;
    width: 160px;
    left: 317px;
    top: 275px;
    z-index: 33;
    opacity: 1;
    font-size: 14px;
}

.lyj_list_sc_right .jjfa_list_title_a a{
    width: 158px;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    background: #5f86e7;
    color: #fff;
}

/**
新闻
 */
.lyj_news_list{

}
.lyj_news_list ul{
    padding: 0px;
    margin: 0px;
}
.lyj_news_list ul li.w-al-unit{
    margin: 0;
    box-sizing: border-box;
    padding: 56px 30px 0;
    width: 380px;
    height: 320px;
    min-width: 100px;
    margin: 0 0 16px 16px;
    overflow: hidden;
    float: left;
    list-style: none;
    cursor: pointer;
    background-color: #FFFFFF;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    text-align: left;
}

.lyj_news_list ul li.w-al-unit a{
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
}

.lyj_news_list ul li.w-al-unit a .w-al-date {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 14px;
    color: #989898;
    text-align: left;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    font-family: Tahoma;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lyj_news_list ul li.w-al-unit a .w-al-title {
    margin: 0;
    padding: 0;
    padding-top: 24px;
    font-size: 16px;
    color: #262626;
    text-align: left;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    font-family: Tahoma;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.lyj_news_list ul li.w-al-unit a .w-al-desc {
    margin: 0;
    padding: 0;
    padding-top: 24px;
    font-size: 12px;
    color: #989898;
    text-align: left;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-family: Tahoma;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.lyj_news_list ul li.w-al-unit a .w-al-btn {
    margin: 0;
    padding: 0;
    padding-top: 48px;
    text-align: left;
    font-size: 12px;
    color: #2b3e9e;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    font-family: Tahoma;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.lyj_news_list ul li:hover{
    transform: perspective(900px) translate3d(0, -8px, 8px);
    background-color: rgb(43, 62, 158);
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
}

.lyj_news_list ul li:hover a .w-al-date,.lyj_news_list ul li:hover  a .w-al-title,.lyj_news_list ul li:hover  a .w-al-desc,.lyj_news_list ul li:hover  a .w-al-btn{
    color:#fff;
}


/*pages*/
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

.pager li {
    display: inline;
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #eee;
}

.pager .next > a,
.pager .next > span {
    float: right;
}
.pager .previous > a,
.pager .previous > span {
    float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;

}



/**
详情页
 */
.lyj_article{
    width: 1200px;
    margin: auto;
    margin-top: 88px;
    text-align: center;
}


.lyj_article .text-center{
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    font-family: 'Microsoft YaHei';
    color: #404040;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    line-height: 34px;
    word-wrap: break-word;
    word-break: normal;
}

.lyj_article  .text-dis{
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    font-family: 'Microsoft YaHei';
    color: #404040;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    text-align: left;
    line-height: 24px;
    word-wrap: break-word;
    word-break: normal;
    margin-top: 20px;
}


/**
预约页面
 */

.lyj_yuyue{
    width: 100%;
    height: 700px;
    font-size: 14px;
    background-image:linear-gradient(180deg,#659ce5 0,#7babe9 calc((700px)/2),#fff calc((700px)/2),#fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.yuyue_dis{
    position: absolute;
    background: #FFFFFF;
    width: 500px;
    height: 500px;
    right: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 40px;
}



.lyj_xyd{
    width: 100%;
}

.lyj_xyd_dis {
    width: 1200px;
    height: 600px !important;
    margin: auto;
    position: relative;
}

.lyj_xyd_dis_left{
    text-align: left;
    position: relative;
    width: 450px;
    float: left;
    margin-top: 100px;
}

.lyj_xyd_dis_left  .jjfa_list_title {
    position: absolute;
    font-size: 22px;
    color: #cccccc;
    height: 30px;
    width: 100%;
    left: 7px;
    top: 24px;
    z-index: 31;
    opacity: 1;
}

.lyj_xyd_dis_left .jjfa_list_title_two {
    position: absolute;
    height: 36px;
    width: 100%;
    left: 7px;
    top: 73px;
    z-index: 31;
    opacity: 1;
    color: #000000;
    font-size: 30px;
}

.lyj_xyd_dis_left .jjfa_list_title_dis {
    position: absolute;
    height: 105px;
    width: 100%;
    left: 8px;
    top: 142px;
    z-index: 32;
    opacity: 1;
    line-height: 2;
    color: #777777;
    font-size: 16px;
    text-indent: 20px;
}


.lyj_xyd_dis_left .jjfa_list_title_a {
    position: absolute;
    height: 50px;
    width: 160px;
    left: 0px;
    top: 265px;
    z-index: 33;
    opacity: 1;
    font-size: 16px;
}

.lyj_xyd_dis_left .jjfa_list_title_a a {
    width: 158px;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    background: #5f86e7;
    color: #fff;
}

.lyj_xyd_dis_right {
    background-image: url("../../assets/img/img-01.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 500px;
    width: 540px;
    float: right;
    margin-top: 60px;
}
.lyj_xyd_dis_right{
    position: relative;
}
.lyj_xyd_dis_right .lyj_xyd_dis_right_dis{
    position: absolute;
    top: 60px;
    left: 29px;
    text-align: center;
}
.lyj_xyd_dis_right .lyj_xyd_dis_right_dis .dis_year{
    color: #ffffff;
    font-size: 36px;
    height: 36px;
    width: 88px;
    margin-bottom: 9px;
}
.lyj_xyd_dis_right .lyj_xyd_dis_right_dis .dis_x{
    color: #ffffff;
    width: 88px;
    height: 1px;
    background: #fff;
}
.lyj_xyd_dis_right .lyj_xyd_dis_right_dis .dis_biaos{
    color: #ffffff;
    width: 88px;
    margin-top: 9px;
}

.lyj_product_intro{
    background: #efe9e961;
    width: 100%;
}

.lyj_product_intro_dis{
    width: 1200px;
    height: 380px !important;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    font-size: 14px;
}

.product_intro_dis_content{
    height: 350px;
    width: 100%;
}

.product_intro_dis_content .product_intro_dis_content_list{
    width: 33%;
    height: 350px;
    float: left;
    padding: 60px 60px;
}

.product_intro_dis_content .product_intro_dis_content_list .top{
    padding-bottom: 20px;
}

.product_intro_dis_content .product_intro_dis_content_list .title{
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    text-align: center;
    height: 30px;
}

.product_intro_dis_content .product_intro_dis_content_list .dis{
    line-height: 2;
    color: #777777;
    text-align: justify;
}


.lyj_idea_dis_li{
    font-size: 16px;
    position: relative;
    text-indent: 25px;
    margin-bottom: 30px;
    color: #777777;
}
.lyj_idea_dis_li img{
    position: absolute;
    top: 0px;
    left: 0px;
}

.lyj_idea_try{
    width: 1200px;
    height: 380px !important;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
}

.lyj_idea_try  .try_title{
    font-size: 34px;
    padding: 50px 0px;
    letter-spacing: 12px;
    color: #3d92fa;
    font-weight: bolder;
    color: #0d1924;
}


/**
标题特效
 */
.lyj_title_one{
    position: absolute;
    width: 15px;
    height: 33px;
    background: #5f86e7;
    top: 14px;
}
.lyj_title_two{
    position: absolute;
    width: 86px;
    height: 5px;
    background: #5f86e7;
    top: 50px;
    left: 17px;
}


.lyj_strong{
    font-weight: bold;
    font-size: 16px;
}


.lyj_color_one{
    color: darkgrey;
}


.lyj_gywomen_image{
    background-image: url("../../assets/img/guanyuwomen/gywm.jpg") !important;
}

.lyj_canpinfuww_image{
    background-image: url("../../assets/img/chanpinfuwu.jpg") !important;
}

.lyj_news_image{
    background-image: url("../../assets/img/news.jpg") !important;
}
.lyj_banner_image_two{
    background-image: url("../../assets/img/banner_02.png") !important;
}

.lyj_size_16{
    font-size: 16px !important;
}
.lyj_size_18{
    font-size: 18px !important;
}








