/*清除并统一浏览器默认样式*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #266aa6;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}

ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
    line-height: 1.4em;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

/*通用样式设置*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 取消链接高亮 */
    -o-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 取消链接高亮 */
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 取消链接高亮 */
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 取消链接高亮 */
    font-style: normal;
    /*list-style: none;*/
    font-family: 'Arial';
    /*-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;*/
}

a {
    text-decoration: none;
}

img {
    border: none;
}

body {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    color: #666;
    min-width: 320px;
    overflow-x: hidden;
    background: #fff;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #999;
}

textarea {
    resize: none;
}

/*详情页图片*/
.alignleft {
    float: left;
    margin: 6px 28px 28px 0;
}

.alignright {
    float: right;
    margin: 6px 0 28px 28px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 28px;
}

/*清除浮动*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.box {
    width: 95%;
    margin: 0 auto;
    max-width: 1440px;
}

.wrap {
    width: 95%;
    margin: 0 auto;
    max-width: 1280px;
}

/*inner_banner*/
.inner_banner {
    width: 100%;
}

.inner_banner img {
    display: block;
    width: 100%;
}

/*内页导航*/
.inner_navigation {
    border-bottom: 1px solid #ddd;
}

/*内页小导航*/
.inner_nav_con {
    width: auto;
	flex-shrink:0;
}

.inner_nav {}

.inner_nav a {
    display: inline-block;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    height: 75px;
    line-height: 75px;
    margin: 0 25px;
    position: relative;
}

.inner_nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.inner_nav a:first-child {
    margin-left: 0;
}

.inner_nav a:last-child {
    margin-right: 0;
}

.inner_nav a:hover {
    color: var(--main-color);
}

.inner_nav a:hover:after {
    width: 100%;
}

.inner_nav a.inner_nav_act {
    color: var(--main-color);
}

.inner_nav a.inner_nav_act:after {
    width: 100%;
}

@media all and (max-width: 1440px) {
    .inner_nav a {
        font-size: 18px;
    }
}

@media all and (max-width: 1024px) {
    .inner_nav a {
        font-size: 16px;
    }
}

@media all and (max-width: 768px) {
    .inner_nav {
        display: none;
    }
}

/*提示语*/

.windows_tips {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, .8);
    width: 50%;
    z-index: 9999;
    border-right: 50%;
    text-align: center;
    padding: 20px 0;
}

/*面包屑导航*/
.breadnav_con {
    width:initial;
	padding:20px 0;
}

.breadnav {
    font-size: 18px;
}

.breadnav {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.breadnav_box {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.breadnav a {
    color: #333;
    text-transform: capitalize;
    text-transform: uppercase;
}

.breadnav span {
    color: #333;
    margin: 0 5px;
}

.breadnav span:first-child {
    margin-left: 0;
}

.breadnav a:hover {
    color: var(--main-color);
}

.breadnav>a:last-child {
    /* overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap; */
}

.breadnav_box>a:last-child {
    /* overflow: hidden;
		text-overflow:ellipsis; */
    /* white-space: nowrap; */
}

@media all and (max-width: 1440px) {
    .breadnav {
        font-size: 16px;
    }
}

@media all and (max-width: 768px) {
    .breadnav {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .breadnav_con {
        width: 100%;
        padding: 10px 0;
    }

    .breadnav span, .breadnav span.iconfont {
        font-size: 12px;
    }

    .breadnav {
        justify-content: flex-start;
    }

    .breadnav_box {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/*滚轮导航样式*/
.nav-list-box {
    overflow: auto;
}

.nav-scroll {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.nav-scroll a {
    padding: 0 30px;
}

.nav-list-box::-webkit-scrollbar {
    width: 4px;
    /*height: 4px;*/
    display: none;
}

.nav-list-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
    display: none;
}

.nav-list-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}


.inabout_video_rsp {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
    display: none;
}

.inabout_video_rsp_close {
    color: #fff;
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 24px;
    cursor: pointer;
}

.inabout_video_rsp_close:hover {
    color: #6abe52;
}

.inabout_video_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
}

.inabout_video_rsp .pc-slide-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.inabout_video_rsp .pc-slide-video iframe,
.inabout_video_rsp .pc-slide-video object,
.inabout_video_rsp .pc-slide-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*iframe 视频样式 - 设置宽高*/
/*.pc-slide-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
}
.pc-slide-video iframe,
.pc-slide-video object,
.pc-slide-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/
/*弹性布局*/
.flex_row {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex_row_top {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/*分享*/

.in_share {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    align-items: center;
    width: 180px;
    /*justify-content: space-between;*/
    justify-content: flex-start;
}

.in_share a {
    display: block;
    width: 35px;
    margin-right: 10px;
    height: 35px;
    border-radius: 50%;
    background: none;
    position: relative;
}

.in_share a span.iconfont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}


/*分页器*/
.page-splitter {
    text-align: center;
}

.page-splitter a,
.page-splitter .current {
    color: #333;
    border: 1px solid #e3e4e4;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 5px;
    display: inline-block;
    font-size: 18px;
}

.page-splitter a:hover {
    color: #fff;
    background-color: var(--main-color);
}

.page-splitter a.page-splitter-avtive,
.page-splitter .current {
    color: #fff;
    background-color: var(--main-color);
}

.page-splitter a span.iconfont {
    font-size: 12px;
}

@media all and (max-width: 1440px) {
    .page-splitter a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
}

@media all and (max-width: 1024px) {
    .page-splitter a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media all and (max-width: 768px) {
    .page-splitter a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}

/*模块标题*/

/*主标题*/
h1 {
    font-size: 40px;
    color: #333;
    font-weight: 600;
}

@media all and (max-width: 1440px) {
    h1 {
        font-size: 34px;
    }
}

@media all and (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
}

@media all and (max-width: 500px) {
    h1 {
        font-size: 22px;
    }
}

/*副标题*/
h2 {}

.in_h2 {
    font-size: 40px;
    color: #333;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    /*letter-spacing:0px;*/
}

.in_h2_s {
    font-size: 40px;
    color: #333;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

@media all and (max-width: 1440px) {
    .in_h2 {
        font-size: 34px;
    }

    .in_h2_s {
        font-size: 34px;
    }
}

@media all and (max-width: 768px) {
    .in_h2 {
        font-size: 26px;
    }

    .in_h2_s {
        font-size: 26px;
    }
}

@media all and (max-width: 500px) {
    .in_h2 {
        font-size: 22px;
    }

    .in_h2_s {
        font-size: 22px;
    }
}

/*小模块标题*/
h3 {}

/*文章-产品标题*/
h4 {
    line-height: 1.5em;
}

h4 a {
    color: #333;
    line-height: 1.2em;
}

h4 a:hover {
    color: var(--main-color);
}

a article {
    color: #666;
}

a article:hover {
    color: var(--main-color);
}

/*溢出隐藏*/
.single_ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

/*阴影效果
-webkit-box-shadow:inset 0 0 10px #0CC;
-moz-box-shadow:inset 0 0 10px #0CC;
box-shadow:inset 0 0 10px #0CC;*/

/*文章详情*/
article {
    font-size: 16px;
    line-height: 25px;
    color: #666;
}

article p {
    margin-bottom: 11px;
}

article p:last-child {
    margin-bottom: 0;
}

article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

@media all and (max-width: 1440px) {
    article {
        font-size: 14px;
    }

    article p {
        margin-bottom: 20px;
    }

    article img {
        margin-bottom: 20px;
    }
}

/*详情页表格样式*/
article .tableDiv {
    overflow: auto;
}

article .tableDiv {
    margin-bottom: 30px;
}

@media all and (max-width: 1366px) {
    article .tableDiv {
        margin-bottom: 20px;
    }
}

/*@media all and (max-width: 1366px) {
	article .tableDiv {
		margin-bottom: 40px;
	}
}
@media all and (max-width: 1023px) {
	article .tableDiv {
		margin-bottom: 30px;
	}
}
@media all and (max-width: 768px) {
	article .tableDiv {
		margin-bottom: 20px;
	}
}*/
article .tableDiv:last-child {
    margin-bottom: 0;
}

article table {
    border: 1px solid #dcdfe1;
    border-bottom: none;
    /*overflow:auto;*/
    width: 100%;
}

article table thead,
article table tbody {}

article table tr {
    background-color: #fff;
    border-bottom: 1px solid #dcdfe1;

}

article table tr:nth-child(2n+1) {
    background-color: #f8f8f8;
}

article table tr th {
    font-size: 16px;
    color: #8b949b;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
}

article table tr td {
    border-right: 1px solid #dcdfe1;
    font-size: 14px;
    color: #8b949b;
    padding: 8px 10px;
}

article table tr td p {
    padding-bottom: 0;
}

article table tr td:last-child {
    border-right: none;
}



/*分割线*/
.cut {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fa8241;
    margin-top: 10px;
    margin-bottom: 25px;
}

/*更多*/
.more {
    display: block;
    width: 100px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 12px;
    color: #fa8241;
    border: 1px solid #fa8241;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 50px;
}

.more:hover {
    color: #fff;
    background-color: #fa8241;
}

span.icon-correct {
    color: #fa8241;
    margin-right: 10px;
}

.in_more {
    display: block;
    width: 260px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}

.in_more:hover {
    color: #fff;
    background-color: var(--main-color);
}

@media all and (max-width: 1440px) {
    .in_more {
        width: 200px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
}

@media all and (max-width: 768px) {
    .in_more {
        width: 170px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

@media all and (max-width: 500px) {
    .in_more {
        width: 150px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}

/*返回顶部*/

#gotop {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--main-color);
    position: fixed;
    bottom: 10%;
    left: 3%;
    z-index: 10;
    text-align: center;
    cursor: pointer;
    color: #fff;

}

#gotop span {
    font-size: 30px !important;
}

/*底部导航样式*/

#dibunav {
    display: none;
}

@media only screen and (max-width: 750px) {
    #dibunav {
        width: 80%;
        position: fixed;
        display: block;
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        background: rgba(245, 245, 245, 0.9);
        border-radius: 100px;
        z-index: 99;
        box-shadow: 0px 26px 25px -29px #000;
    }
}

#dibunav .dibunav-con {
    width: 95%;
    display: -webkit-flex;
    display: flex;
}

#dibunav .dibunav-con li {
    text-align: center;
    float: left;
    width: 25%;
    padding: 16px 0px;
}

#dibunav .dibunav-con li {
    border-left: 1px solid #fff;
}

#dibunav .dibunav-con li:nth-child(1) {
    border-left: none;
}

#dibunav .dibunav-con li a {
    color: #1968d1;
    text-align: center;
}

#dibunav .dibunav-con li a img {
    /*width: 100%;*/
    display: inline-block;
    margin: 0 auto;
}

@media only screen and (max-width: 450px) {
    #dibunav {
        width: 95%;
        height: 63px;
    }

    #dibunav .dibunav-con li a img {
        width: 25px;
    }

    #dibunav .dibunav-con li {
        padding: 8px 0px 10px 0;
    }
}

@media only screen and (max-width: 320px) {
    #dibunav {
        width: 100%;
        bottom: -3%;
    }

    #dibunav .dibunav-con li a img {
        width: 20px;
    }
}

/*模块-间距*/

.section100 {
    padding: 100px 0;
}

.section80 {
    padding: 80px 0;
}

.section60 {
    padding: 60px 0;
}

.section50 {
    padding: 50px 0;
}

@media all and (max-width: 1366px) {
    .section100 {
        padding: 80px 0;
    }

    .section80 {
        padding: 60px 0;
    }

    .section60 {
        padding: 50px 0;
    }

    .section50 {
        padding: 40px 0;
    }
}

@media all and (max-width: 1023px) {
    .section100 {
        padding: 60px 0;
    }

    .section80 {
        padding: 50px 0;
    }

    .section60 {
        padding: 40px 0;
    }

    .section50 {
        padding: 30px 0;
    }
}

@media all and (max-width: 768px) {
    .section100 {
        padding: 50px 0;
    }

    .section80 {
        padding: 40px 0;
    }

    .section60 {
        padding: 30px 0;
    }
}

@media all and (max-width: 450px) {
    .section100 {
        padding: 40px 0;
    }

    .section80 {
        padding: 30px 0;
    }
}

/*margin_top*/
.margin_top100 {
    margin-top: 100px;
}

.margin_top80 {
    margin-top: 80px;
}

.margin_top60 {
    margin-top: 60px;
}

.margin_top50 {
    margin-top: 50px;
}

.margin_top40 {
    margin-top: 40px;
}

.margin_top30 {
    margin-top: 30px;
}

.margin_top20 {
    margin-top: 20px;
}

@media all and (max-width: 1366px) {
    .margin_top100 {
        margin-top: 80px;
    }

    .margin_top80 {
        margin-top: 60px;
    }

    .margin_top60 {
        margin-top: 50px;
    }

    .margin_top50 {
        margin-top: 40px;
    }

    .margin_top40 {
        margin-top: 30px;
    }

    .margin_top30 {
        margin-top: 20px;
    }
}

@media all and (max-width: 1023px) {
    .margin_top100 {
        margin-top: 60px;
    }

    .margin_top80 {
        margin-top: 50px;
    }

    .margin_top60 {
        margin-top: 40px;
    }

    .margin_top50 {
        margin-top: 30px;
    }

    .margin_top40 {
        margin-top: 20px;
    }
}

@media all and (max-width: 768px) {
    .margin_top100 {
        margin-top: 50px;
    }

    .margin_top80 {
        margin-top: 40px;
    }

    .margin_top60 {
        margin-top: 30px;
    }

    .margin_top50 {
        margin-top: 20px;
    }
}

@media all and (max-width: 450px) {
    .margin_top100 {
        margin-top: 40px;
    }

    .margin_top80 {
        margin-top: 30px;
    }

    .margin_top60 {
        margin-top: 20px;
    }
}

/*margin_bot*/
.margin_bot100 {
    margin-bottom: 100px;
}

.margin_bot80 {
    margin-bottom: 80px;
}

.margin_bot60 {
    margin-bottom: 60px;
}

.margin_bot50 {
    margin-bottom: 50px;
}

.margin_bot40 {
    margin-bottom: 40px;
}

.margin_bot30 {
    margin-bottom: 30px;
}

.margin_bot20 {
    margin-bottom: 20px;
}

@media all and (max-width: 1366px) {
    .margin_bot100 {
        margin-bottom: 80px;
    }

    .margin_bot80 {
        margin-bottom: 60px;
    }

    .margin_bot60 {
        margin-bottom: 50px;
    }

    .margin_bot50 {
        margin-bottom: 40px;
    }

    .margin_bot40 {
        margin-bottom: 30px;
    }

    .margin_bot30 {
        margin-bottom: 20px;
    }
}

@media all and (max-width: 1023px) {
    .margin_bot100 {
        margin-bottom: 60px;
    }

    .margin_bot80 {
        margin-bottom: 50px;
    }

    .margin_bot60 {
        margin-bottom: 40px;
    }

    .margin_bot50 {
        margin-bottom: 30px;
    }

    .margin_bot40 {
        margin-bottom: 20px;
    }
}

@media all and (max-width: 768px) {
    .margin_bot100 {
        margin-bottom: 50px;
    }

    .margin_bot80 {
        margin-bottom: 40px;
    }

    .margin_bot60 {
        margin-bottom: 30px;
    }
}

@media all and (max-width: 450px) {
    .margin_bot100 {
        margin-bottom: 40px;
    }

    .margin_bot80 {
        margin-bottom: 30px;
    }

    .margin_bot60 {
        margin-bottom: 20px;
    }
}

/*padding_top*/
.padding_top100 {
    padding-top: 100px;
}

.padding_top80 {
    padding-top: 80px;
}

.padding_top60 {
    padding-top: 60px;
}

.padding_top50 {
    padding-top: 50px;
}

.padding_top40 {
    padding-top: 40px;
}

.padding_top30 {
    padding-top: 30px;
}

.padding_top20 {
    padding-top: 20px;
}

@media all and (max-width: 1366px) {
    .padding_top100 {
        padding-top: 80px;
    }

    .padding_top80 {
        padding-top: 60px;
    }

    .padding_top60 {
        padding-top: 50px;
    }

    .padding_top50 {
        padding-top: 40px;
    }

    .padding_top40 {
        padding-top: 30px;
    }

    .padding_top30 {
        padding-top: 20px;
    }
}

@media all and (max-width: 1023px) {
    .padding_top100 {
        padding-top: 60px;
    }

    .padding_top80 {
        padding-top: 50px;
    }

    .padding_top60 {
        padding-top: 40px;
    }

    .padding_top50 {
        padding-top: 30px;
    }

    .padding_top40 {
        padding-top: 20px;
    }
}

@media all and (max-width: 768px) {
    .padding_top100 {
        padding-top: 50px;
    }

    .padding_top80 {
        padding-top: 40px;
    }

    .padding_top60 {
        padding-top: 30px;
    }

    .padding_top50 {
        padding-top: 20px;
    }
}

@media all and (max-width: 450px) {
    .padding_top100 {
        padding-top: 40px;
    }

    .padding_top80 {
        padding-top: 30px;
    }

    .padding_top60 {
        padding-top: 20px;
    }
}

/*padding_bot*/
.padding_bot100 {
    padding-bottom: 100px;
}

.padding_bot80 {
    padding-bottom: 80px;
}

.padding_bot60 {
    padding-bottom: 60px;
}

.padding_bot50 {
    padding-bottom: 50px;
}

.padding_bot40 {
    padding-bottom: 40px;
}

.padding_bot30 {
    padding-bottom: 30px;
}

.padding_bot20 {
    padding-bottom: 20px;
}

@media all and (max-width: 1366px) {
    .padding_bot100 {
        padding-bottom: 80px;
    }

    .padding_bot80 {
        padding-bottom: 60px;
    }

    .padding_bot60 {
        padding-bottom: 50px;
    }

    .padding_bot50 {
        padding-bottom: 40px;
    }

    .padding_bot40 {
        padding-bottom: 30px;
    }

    .padding_bot30 {
        padding-bottom: 20px;
    }
}

@media all and (max-width: 1023px) {
    .padding_bot100 {
        padding-bottom: 60px;
    }

    .padding_bot80 {
        padding-bottom: 50px;
    }

    .padding_bot60 {
        padding-bottom: 40px;
    }

    .padding_bot50 {
        padding-bottom: 30px;
    }

    .padding_bot40 {
        padding-bottom: 20px;
    }
}

@media all and (max-width: 768px) {
    .padding_bot100 {
        padding-bottom: 50px;
    }

    .padding_bot80 {
        padding-bottom: 40px;
    }

    .padding_bot60 {
        padding-bottom: 30px;
    }

    .padding_bot50 {
        padding-bottom: 20px;
    }
}

@media all and (max-width: 450px) {
    .padding_bot100 {
        padding-bottom: 40px;
    }

    .padding_bot80 {
        padding-bottom: 30px;
    }

    .padding_bot60 {
        padding-bottom: 20px;
    }
}

/*css3动画*/
/*@keyframes mycolor{
	0%{
		transform: rotate(90deg);
	}
	30%{
		transform: rotate(90deg);
		
	}
	60%{
		transform: rotate(270deg);
		
	}
	100%{
		transform: rotate(360deg);
	
	}
}
@-webkit-keyframes mycolor{
	0%{
		transform: rotate(90deg);
	}
	30%{
		transform: rotate(90deg);
		
	}
	60%{
		transform: rotate(270deg);
		
	}
	100%{
		transform: rotate(360deg);
	
	}
}
@-moz-keyframes mycolor{
	0%{
		transform: rotate(90deg);
	}
	30%{
		transform: rotate(90deg);
		
	}
	60%{
		transform: rotate(270deg);
		
	}
	100%{
		transform: rotate(360deg);
	
	}
}
@-o-keyframes mycolor{
	0%{
		transform: rotate(90deg);
	}
	30%{
		transform: rotate(90deg);
		
	}
	60%{
		transform: rotate(270deg);
		
	}
	100%{
		transform: rotate(360deg);
	
	}
}
@-ms-keyframes mycolor{
	0%{
		transform: rotate(90deg);
	}
	30%{
		transform: rotate(90deg);
		
	}
	60%{
		transform: rotate(270deg);
		
	}
	100%{
		transform: rotate(360deg);
	
	}
}
*/
@media screen and (max-width:768px) {
/* 	.inner_banner img{
		position:relative;
		left:50%;
		top:0;
		transform:translateX(-50%);
		width:1920px;
	} */
	
	.inabout_video_box{
		width:92%;
	}
}

.ph-language{
	display:none;
}

