@charset "utf-8";
/* ------------------------------------全局定义---------------------------------------- */
/* 将具有默认margin和padding的标记置零，所有标记的margin、padding都在使用时具体定义 */
* {
    margin: 0;
    padding: 0;
}

/* 修正IE5.x和IE6的斜体溢出bug */
* html body {
    overflow: visible;
}

* html iframe, * html frame {
    overflow: auto;
    border: 0
}

* html frameset {
    overflow: hidden;
}

.columns-right .btn {
    padding: 3px 10px 2px 10px;
}

/* 常用标签，基本标签默认样式取消，HTML标签，取消基本标签默认样式，防止不同浏览器显示效果不同，text-align:center; 解决不同浏览器居中问题 */
body {
    color: #000;
    font-size: 16px;
    font-family: '微软雅黑,\\5FAE\8F6F\96C5\9ED1,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Arial,sans-serif';
    background: #f2f2f2;
}

html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, table, td, img, div, tr {
    margin: 0;
    padding: 0;
}

input, select {
    font-size: 12px;
    vertical-align: middle;
}

input, select, option, textarea, .btn, .filter-option {
    outline: none !important;
}

/* 标签属性，textarea,input 强制输入时内容超出时换行 */
textarea, input {
    word-wrap: break-word;
    word-break: break-all;
    padding: 0px;
}

/* 清除ul列表标记的样式，ul列表更多的用在不需要列表前置符号的样式里 */
li {
    list-style-type: none;
}

/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */
img {
    border: 0 none;
    vertical-align: middle
}

i, b, em {
    font-style: normal;
}

/* 去掉链接的虚线框 */
a {
    outline: none;
    color: #555
}

.pointer {
    cursor: pointer;
}

/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */
a:link, a:visited {
    text-decoration: none;
}

a:hover {
    color: #d81e05;
    text-decoration: none;
}

/*全局定义谷歌滚动条*/
.overflow {
    overflow: hidden;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 5px; /*滚动条宽度*/
    height: 5px; /*滚动条高度*/
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px; /*滚动条的背景区域的圆角*/
    background-color: #f0fafe; /*滚动条的背景颜色*/
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px; /*滚动条的圆角*/
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #9aa4b7; /*滚动条的背景颜色*/
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8592af;
}

/* 定义H系列标签，覆盖H系列标签默认属性 */
h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}


.height100 {
    height: 100%;
}

.width100 {
    width: 100%;
}

/*字体大小*/
.fs-12 {
    font-size: 12px
}

.fs-14 {
    font-size: 14px
}

.fs-16 {
    font-size: 16px
}

.fs-18 {
    font-size: 18px
}

.fs-20 {
    font-size: 20px
}

/*边框圆角为0*/
.btr0 {
    border-top-right-radius: 0 !important;
}

/*列表中编辑操作按钮自定义样式*/
.btn_style {
    padding: 0.05rem 0.3rem;
    margin: 0 0.15rem;
    font-size: 12px;
}

.btl0 {
    border-top-left-radius: 0 !important
}

.bbr0 {
    border-bottom-right-radius: 0 !important
}

.bbl0 {
    border-bottom-left-radius: 0 !important
}

/*边框圆角为5*/
.btr5 {
    border-top-right-radius: 5px;
}

.btl5 {
    border-top-left-radius: 5px
}

.bbr5 {
    border-bottom-right-radius: 5px
}

.bbl5 {
    border-bottom-left-radius: 5px
}

/*边框圆角为5*/
.btr3 {
    border-top-right-radius: 3px !important
}

.btl3 {
    border-top-left-radius: 3px !important
}

.bbr3 {
    border-bottom-right-radius: 3px !important
}

.bbl3 {
    border-bottom-left-radius: 3px !important
}

/*边框为0*/
.br0 {
    border-right: 0;
}

.bt0 {
    border-top: 0;
}

.bb0 {
    border-bottom: 0;
}

.bl0 {
    border-left: 0;
}

/*边框为1*/
.border {
    border: 1px solid #484C52;
}

/*边框为0 3 5 10*/
.br0 {
    border-radius: 0;
}

.br3 {
    border-radius: 3px;
}

.br5 {
    border-radius: 5px;
}

.br10 {
    border-radius: 10px;
}

/*自定义整数宽度10-450*/
.w10 {
    width: 10px
}

.w20 {
    width: 20px
}

.w30 {
    width: 30px
}

.w40 {
    width: 40px
}

.w50 {
    width: 50px
}

.w60 {
    width: 60px
}

.w70 {
    width: 70px
}

.w80 {
    width: 80px
}

.w90 {
    width: 90px
}

.w100 {
    width: 100px
}

.w110 {
    width: 110px
}

.w120 {
    width: 120px
}

.w130 {
    width: 130px
}

.w140 {
    width: 140px
}

.w150 {
    width: 150px
}

.w160 {
    width: 160px
}

.w170 {
    width: 170px
}

.w180 {
    width: 180px
}

.w190 {
    width: 190px
}

.w200 {
    width: 200px
}

.w210 {
    width: 210px
}

.w220 {
    width: 220px
}

.w230 {
    width: 230px
}

.w240 {
    width: 240px
}

.w250 {
    width: 250px
}

.w260 {
    width: 260px
}

.w270 {
    width: 270px
}

.w280 {
    width: 280px
}

.w290 {
    width: 290px
}

.w300 {
    width: 300px
}

.w450 {
    width: 450px
}

.m-all7 {
    margin: 7px;
}

.m-t-b7 {
    margin: 7px 0;
}

.p-all7 {
    padding: 7px;
}

/*外边距为1*/
.mt_1 {
    margin-top: -1px;
}

.mr1 {
    margin-right: 1px;
}

.ml1 {
    margin-left: 1px;
}

.mt1 {
    margin-top: 1px;
}

.mb1 {
    margin-bottom: 1px;
}

/*右外边距margin-right 0-30*/
.mr0 {
    margin-right: 0;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

/*左外边距margin-left 0 -30*/
.ml0 {
    margin-left: 0;
}

.ml5 {
    margin-left: 5px;
}

.ml2 {
    margin-left: 2px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

/*上外边距margin-top 0 -30*/
.mt0 {
    margin-top: 0;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt17 {
    margin-top: 17px
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

/*下外边距margin-bottom 0 -30*/
.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb17 {
    margin-bottom: 17px
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mr22 {
    margin-right: 22px;
}

/*下内边距margin-bottom 0 -30*/
.pb0 {
    padding-bottom: 0;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

/*上内边距padding-top 0 -30*/
.pt0 {
    padding-top: 0;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt25 {
    padding-top: 25px;
}

.pt30 {
    padding-top: 30px;
}

/*左内边距padding-left 0 -30*/
.pl0 {
    padding-left: 0;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pl25 {
    padding-left: 25px;
}

.pl30 {
    padding-left: 30px;
}

/*右内边距padding-right 0 -30*/
.pr0 {
    padding-right: 0;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr15 {
    padding-right: 15px;
}

.pr20 {
    padding-right: 20px;
}

.pr25 {
    padding-right: 25px;
}

.pr30 {
    padding-right: 30px;
}

.m10 {
    margin: 10px;
}

.b1px {
    border: 1px solid #6ec1ab
}

.bb1px {
    color: #000;
    background: #e9ecef;
    padding: 7px 10px;
    margin-bottom: 0;
    min-height: 35px;
}

.lh35 {
    line-height: 35px;
}

/* 浮动 */
.fl {
    float: left
}

.fr {
    float: right
}

.dib {
    display: inline-block;
}

.db {
    display: block;
}

/*居中居左居右*/
.tac {
    text-align: center;
}

.tal {
    text-align: left
}

.tar {
    text-align: right
}

/* 撑起浮动高度 */
.overflow {
    overflow: hidden
}

.clear {
    clear: both;
    height: 0px;
    width: 100%;
    font-size: 1px;
    line-height: 0px;
    visibility: hidden;
    overflow: hidden;
}

/*固定宽带1200*/
.content {
    width: 1200px;
    margin: 0 auto;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top_wel {
    line-height: 32px;
    background: #f2f2f2;
    height: 26px;
}

.top_wel span {
    font-size: 15px;
    color: #a8a8a8;
}

header {
    background: #fff;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    bottom: -8px;
    z-index: 10;
}

header .logo {
    width: 500px;
}

.phone {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 18px;
}

.phone .phone_num {
    margin-left: 10px;
    font-weight: bold;
    color: #0067ac;
}

.phone .phone_num p:nth-child(2) {
    margin-top: 5px;
    color: #ec0a0a;
    font-family: 微软雅黑;
    background-color: #FFFFFF;
    font-size: 24px;
    font-style: italic;
}

/* nav 导航*/
nav {
    line-height: 66px;
    background: url(../../../img/front/home/nav_bg.png);
    background-repeat: no-repeat;
    height: 82px;
    background-position: 50% 0px;
    overflow: visible;
    z-index: 10;
    position: relative;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 7px;
}

nav ul li {
    position: relative;
    margin-right: 10px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    position: relative;
    z-index: 2;
    padding: 0 35px;
    font-size: 18px;
    display: block;
    color: #fff;

}

nav ul li a:hover {
    color: #fff;

}

nav ul li:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #ff9000;
    height: 0px;
    z-index: 1;
    transition: all 0.2s ease-in;
}

nav ul li:hover:after {
    content: '';
    height: 67px;
}

/* 视频介绍 */
.video_mode {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.video_l {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
    z-index: 2;
    width: 50%;
    height: 380px;

}

.video_l::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 10%;
    bottom: 0;
    height: 70%;
    background: #0067ac;
}

.video_cont {
    position: relative;
    border: 1px solid #ddd;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    transition: all 0.8s linear;
}

.video-open {
    display: block
}

.video-open:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../../img/front/home/play-ico.png) center center no-repeat;
    transition: all .8s;
    -webkit-transition: all .8s;
}

.video_cont:hover {
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
}

.video_cont:hover .video-open:before {
    content: '';
    background: url(../../../img/front/home/play-ico.png) center 140px no-repeat;
}

.text_r {
    width: 45%;
}

.text_r h1 {
    font-size: 28px;
    margin-top: 20px;
    color: #1e50ae;
    font-weight: normal;
}

.text_r h2 {
    font-size: 15px;
    font-weight: normal;
    color: #999;
    margin-top: 10px;
}

.text_conetnt {
    line-height: 30px;
    margin-top: 20px;
}


/* 底部 */
.wave {
    position: relative;
    width: 100%;
    height: 300px;
    padding-top: 50px;
    background: #fff;
}

.wave .shape {
    position: absolute;
    background: url(../../../img/front/home/wave1.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 100%;
}

.wave .shape1 {
    opacity: 1;
    animation: waveMove1 15s linear infinite;
    background-position: 300px 20px;
}

.wave .shape2 {
    opacity: 0.3;
    animation: waveMove2 19s linear infinite;
    background-position: 600px 10px;
}

.wave .shape3 {
    opacity: 0.1;
    animation: waveMove3 13s linear infinite;
    background-position: 0px 0px;
}

.conTbox {
    text-align: center;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    top: 65%;
}

.conTbox h5 {
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin-bottom: 22px;
}

.conTbox .tactBtn {
    width: 145px;
    line-height: 48px;
    border: 2px solid rgba(255, 255, 255, .5);
    text-align: center;
    display: block;
    color: #fff;
    margin: 0 auto;
    transition: .3s;
}

.conTbox .tactBtn:hover {
    border: 2px solid #fff;
}


/* 侧边栏 */
/*.aside_right{
    position: fixed;
    top: 50%;
    margin-top: -160px;
    right: 0;
    z-index: 999;
    height: 320px;
}
.aside_right ul li:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
}
.aside_right ul li:nth-child(2){
    position: absolute;
    top: 80px;
    right: 0;
}
.aside_right ul li:nth-child(3){
    position: absolute;
    top: 160px;
    right: 0;
}
.aside_right ul li:nth-child(4){
    position: absolute;
    top: 240px;
    right: 0;
}
.aside_right ul li{
    margin-bottom: 10px;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, .4);
    border: 1px solid rgba(2,160,233,0.8);
    transition: all 0.5s linear;
    border-right: none;}
.aside_right ul li::after{    content: "";
    background-color: rgba(2,160,233,0.8);
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;}
.aside_right ul li:hover::after{    width: 100%;}
.aside_right ul li .aside_defult{    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;}
.aside_right ul li .aside_defult img{
    width: 35px;
    height: 35px;
    margin-top: 8px;
}
.aside_right ul li .aside_defult p{    color: #fff;
    font-size: 12px;
    margin-top: 5px;}
.aside_right ul li:hover{
    width: 156px;
}
.aside_right ul li:hover .aside_defult{
    display: none;
}
.aside_right ul li:hover .aside_hover{
    display: block;
}
.aside_hover{
    height: 100%;
    display: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.aside_hover p{color: #fff;
    text-align: center;
    line-height: 68px;
    height: 68px;
    white-space: nowrap;}
@keyframes waveMove1 {
    from {background-position: 300px 20px;}
    to {background-position: -1620px 20px;}
}
@keyframes waveMove2 {
    from {background-position: 600px 10px;}
    to {background-position: -1320px 10px;}
}
@keyframes waveMove3 {
    from {background-position: 0px 0px;}
    to {background-position: -1920px 0px;}
}*/


/* 企业产品 */
.product_tj {
    padding: 30px 0;
}

.product_tj ul {
    overflow: hidden;
}

.product_tj ul li {
    cursor: pointer;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.product_tj ul li:nth-child(3n) {
    margin-right: 0;
}

.product_tj ul li a > div {
    overflow: hidden;
    width: 380px;
    height: 400px;
    position: relative;
}

.product_tj ul li:hover .show_hide {
    background: rgba(0, 0, 0, .4);
}

.product_tj ul li .show_hide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(23, 69, 146, .6);
    transition: all 0.5s ease;
}

.product_tj ul li .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.product_tj ul li:hover .show_hide {
    opacity: 1;
}

.product_tj ul li .text::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}

.product_tj ul li:hover .text:after {
    width: 30px;
}

.product_tj ul li .text::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}

.product_tj ul li:hover .text::before {
    width: 30px;
}

.product_tj ul li img {
    width: 100%;
    height: 100%;
    transition: all 0.5s linear;
}

.product_tj ul li:hover img {
    transform: scale(1.1);
}

.product_tj ul li p {
    line-height: 45px;
    background: #f3f3f3;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}


/* 企業文化 關於我們 */
.culture {
    padding-top: 100px;
    background: #fff url(../../../img/front/home/pic_15.jpg) repeat center top;
}

.cuture_l {
    padding: 0 90px 0 63px;
    background: white;
    width: 703px;
    height: 323px;
}

.cuture_r {
    background: url(../../../img/front/home/pic_27.jpg) no-repeat;
    width: 344px;
}

.culture_tit {
    font-size: 26px;
    color: black;
    line-height: 35px;
    padding-top: 52px;
}

.culture_en {
    text-transform: uppercase;
    font-size: 16px;
    color: black;
    line-height: 25px;
}

.culture_con {
    color: black;
    line-height: 32px;
    margin-top: 15px;
}

.culture_more {
    padding-left: 29px;
    text-transform: uppercase;
    font-size: 14px;
    color: #a2a2a2;
    background: url(../../../img/front/home/pic_16.jpg) no-repeat center center;
    width: 77px;
    height: 30px;
    line-height: 30px;
    margin-top: 28px;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    overflow: hidden;
}

.culture_more a {
    display: block;
    color: #a2a2a2;
}

.contact {
    height: 277px;
    border-bottom: 1px solid #e96767;
    padding: 0 33px;
}

.contact_tit {
    font-size: 20px;
    color: #fff;
    line-height: 38px;
    padding-top: 43px;
}

.contact_en {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    line-height: 45px;
    padding-bottom: 14px;
    background: url(../../../img/front/home/pic_20.jpg) no-repeat left bottom;
}

.contact_first {
    height: 66px;
    padding: 0 35px;
    line-height: 66px;
}

.contact_first img {
    vertical-align: middle;
}

.contact_r {
    font-size: 14px;
}

.contact_r a {
    color: #fff;
}

.contact_r img {
    padding-left: 5px;
}


.col-md-12 {
    position: relative;
}

.fzlc .poster-btn {
    height: 120px;
    width: 80px;
    top: 230px;
    position: absolute;
}

.fzlc .poster-prev-btn {
    top: 234px;
    left: -18px;
    background: url(../../../img/front/home/left1.png) no-repeat center center;
    cursor: pointer;
}

.fzlc .poster-next-btn {
    top: 232px;
    right: -19px;
    background: url(../../../img/front/home/right1.png) no-repeat center center;
    cursor: pointer;
}

/*aboutUs yw*/
.gsjj{
    width: 100%;
    height: 1000px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgb(220, 220, 221);
}

.left_div {
    width: 1200px;
    height: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


.log_div {
    position: absolute;
    top: 58px;
    left: 26px;
}

.logo_div {
    position: absolute;
    top: 34px;
    left: 500px;
    z-index: 1;
}

.headline_div {
    width: 1920px;
    height: 770px;
    background-color: rgb(9, 128, 239);
    margin: auto;
    position: absolute;
    top: 117px;
    right: 0;
    bottom: 0;
    left: 0;
    color: white;
}

.qytp {
    background-color: black;
    width: 600px;
}

.qytp .img_ul{
    position: absolute;
    bottom: 40px;
    left: 175px;
    width: 1600px;
}

.qytp .img_ul li {
    margin-right: 16px;
    z-index: 1;
    float: left;
}


.qytp .img_ul li img {
    width: 384px;
    height: 282px;
}


.content-company {
    position: absolute;
    top: 95px;
    right: 120px;
    bottom: 0;
    left: 120px;
    margin: auto;
    z-index: 1;
    color: white;
    padding: 20px;
    line-height: 1.5em;
}




.first {
    width: 200px;
    height: 250px;
    overflow: hidden;
    transform: rotate(120deg);
}

.two {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: rotate(-60deg);
}

.three {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: rotate(-60deg);
    background: white;
}

#fp-nav.right {
    right: 17px;
}
#fp-nav {
    position: fixed;
    right: 1%;
    top: 45%;
    z-index: 50;
    width: 32px;
    height: 140px;
    opacity: 1;
}

#fp-nav ul li{
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

#fp-nav ul li a{
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    background: #1368d7;
    margin: 10px 0;
    position: relative;
    left: 13px;
}


/*aboutUs YH*/
.back_color {
    position: relative;
    background-color: rgb(220, 220, 221);
}

.roll_div {
    width: 1908px;
    height: 910px;
    position: relative;
    margin: auto;
    background-color: rgb(220, 220, 221);
}

.aboutUs {
    width: 1906px;
    height: 900px;
    position: relative;
    background-color: rgb(220, 220, 221);
    margin: auto;
    overflow: auto;
}

.middle_div {
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.frame_div {
    padding: 14.5px 0px 11.5px 35px;
    border-radius: 30px 0px 0px 30px;
    height: 53%;
    border-top: solid 14px white;
    border-bottom: solid 13px white;
    border-left: solid 13px white;
    margin: auto 30px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.base_div {
    width: 100%;
    border-radius: 30px 0px 0px 30px;
    height: 81%;
    background-color: rgb(0, 160, 233);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.subject_div {
    width: 200px;
    height: 80%;
    background-color: white;
    box-shadow: 7px 7px rgb(9, 128, 239);

}

.subject_top_div {
    position: absolute;
    top: 6%;
}

.subject_bottom_div {
    position: absolute;
    bottom: 6%;
    left: 240px;
}

.label-top {
    width: 15%;
    height: 10%;
    background-color: rgb(191, 191, 192);
    position: absolute;
    right: 10%;
}

.label-bottom {
    width: 15%;
    height: 10%;
    background-color: rgb(191, 191, 192);
    position: absolute;
    left: 10%;
    bottom: 0px;
}

.year_span {
    font-size: 40px;
    color: rgb(0, 140, 214);
}

.year_span_top {
    position: absolute;
    top: 30px;
    left: 20px;
}

.year_span_bottom {
    position: absolute;
    top: 170px;
    left: 20px;
}

.content_span_top {
    font-family: 微软雅黑;
    font-size: 14px;
    position: absolute;
    top: 100px;
    left: 20px;
}

.content_span_bottom {
    font-family: 微软雅黑;
    font-size: 14px;
    position: absolute;
    top: 235px;
    left: 20px;
}

.content_span_top_eng {
    font-family: 微软雅黑;
    font-size: 12px;
    position: absolute;
    top: 230px;
    left: 20px;
}

.content_span_bottom_eng {
    font-family: 微软雅黑;
    font-size: 12px;
    position: absolute;
    top: 352px;
    left: 20px;
}

.slogan_top {
    writing-mode: tb-rl;
    font-size: 50px;
    color: rgb(113, 112, 112);
    position: absolute;
    top: 477px;
    right: 20px;
}

.slogan_top_eng {
    writing-mode: tb-rl;
    font-size: 12px;
    color: rgb(113, 112, 112);
    position: absolute;
    top: 477px;
    height: 120px;
    right: 95px;
}


.slogan_bottom {
    writing-mode: tb-rl;
    font-size: 50px;
    color: rgb(113, 112, 112);
    position: absolute;
    bottom: 70px;
    right: 20px;
}

.slogan_bottom_eng {
    writing-mode: tb-rl;
    font-size: 12px;
    color: rgb(113, 112, 112);
    position: absolute;
    bottom: 45px;
    height: 120px;
    right: 95px;
}

.img_top_div {
    width: 110px;
    height: 110px;
    position: absolute;
    bottom: 15px;
    right: 45px;
}

.img_bottom_div {
    width: 110px;
    height: 110px;
    position: absolute;
    top: 25px;
    right: 45px;
}

#img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left_roll {
    height: 100%;
    width: 400px;
    position: absolute;
    left: -10px;
    top: 0;
}

.right_roll {
    height: 100%;
    width: 400px;
    position: absolute;
    right: -10px;
    top: 0;
    z-index: 101;
}

.left_arrows{
    font-size: 100px;
    color: rgb(191, 191, 192);
    position: absolute;
    top: -40px;
    left: 20px;
}

.right_arrows{
    font-size: 100px;
    color: rgb(191, 191, 192);
    position: absolute;
    top: -40px;
    right: 20px;
}

.right_arrows_bottom {
    font-size: 100px;
    color: rgb(191, 191, 192);
    position: absolute;
    bottom: -25px;
    right: 20px;
}

.left_arrows_bottom {
    font-size: 100px;
    color: rgb(191, 191, 192);
    position: absolute;
    bottom: -25px;
    left: 20px;
}
.right_div1 {
    height: 100%;
    position: absolute;
    right: -720px;
    top: -1px;

    display: flex;
    align-items: center;
    text-align:center;
}

.right_div2 {
    position: absolute;
    right: -605px;
    top: 242px;
    display: flex;
    align-items: center;
    text-align:center;
    z-index: 100;
    border-radius: 0 70px 70px 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
}


.right_div_img {
    max-width: 90%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 82px;
}

.qywh li{
    position: relative;
    margin-right: 16px;
    top: -204px;
    z-index: 1;
    float: left;
    right: -487px;
}
.qywh li img{
    width: 300px;
    height: 220px;
}



.slogan-top {
    width: 100%;
    background-color: white;
    height: 722px;
    position: relative;
    bottom: -296px;
}

.slogan-top ul{
    list-style-type: none;
    width: 1620px;
    height: 370px;
    margin: auto;
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 250px;
    left: 0;
}
.slogan-top ul li{
    color: white;
    width: 130px;
    height: 92%;
    float: left;
    background-image: url("../../../../module/img/front/home/bg_3.jpg");
    background-size: 1200px;
    margin-right: 19px;
    writing-mode: tb-rl;
    font-size: 62px;
    padding: 15px;
    letter-spacing: 45px
}
.slogan-top ul li div{
    color: black;
    font-size: 14px;
    letter-spacing: 0px;
    margin-right: 12px;
}

.li_img1 {
    background-position: 35px 0px;
}
.li_img2 {
    background-position: -100px 0px;
}
.li_img3 {
    background-position: -233px 0px;
}
.li_img4 {
    background-position: -359px 0px;
}
.li_img5 {
    background-position: -485px 0px;
}
.li_img6 {
    background-position: -585px 0px;
}
.li_img7 {
    background-position: -703px 0px;
}
.li_img8 {
    background-position: -830px 0px;
}
.li_img9 {
    background-position: -950px 0px;
}