/*
@font-face{
    font-family: 'Roboto-Black';
    src : url('../fonts/en/Roboto-Black.ttf');
    font-family: 'Roboto-Bold';
    src : url('../fonts/en/Roboto-Bold.ttf');
    font-family: 'Roboto-BoldCondensed';
    src : url('../fonts/en/Roboto-BoldCondensed.ttf');
    font-family: 'Roboto-Condensed';
    src : url('../fonts/en/Roboto-Condensed.ttf');
    font-family: 'Roboto-Light';
    src : url('../fonts/en/Roboto-Light.ttf');
    font-family: 'Roboto-Medium';
    src : url('../fonts/en/Roboto-Medium.ttf');
    font-family: 'Roboto-Regular';
    src : url('../fonts/en/Roboto-Regular.ttf');
    font-family: 'Roboto-Thin';
    src : url('../fonts/en/Roboto-Thin.ttf');
    font-family: 'SourceHanSansCN-Bold';
    src : url('../fonts/zh/SourceHanSansCN-Bold.otf');
    font-family: 'SourceHanSansCN-Heavy';
    src : url('../fonts/zh/SourceHanSansCN-Heavy.otf');
    font-family: 'SourceHanSansCN-Light';
    src : url('../fonts/zh/SourceHanSansCN-Light.otf');
    font-family: 'SourceHanSansCN-Medium';
    src : url('../fonts/zh/SourceHanSansCN-Medium.otf');
    font-family: 'SourceHanSansCN-Normal';
    src : url('../fonts/zh/SourceHanSansCN-Normal.otf');
    font-family: 'SourceHanSansCN-Regular';
    src : url('../fonts/zh/SourceHanSansCN-Regular.otf');
} */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*{margin: 0;padding: 0;list-style: none;}
/*
KISSY CSS Reset
理念：1. reset 的目的不是清除浏览器的默认样式，这仅是部分工作。清除和重置是紧密不可分的。
2. reset 的目的不是让默认样式在所有浏览器下一致，而是减少默认样式有可能带来的问题。
3. reset 期望提供一套普适通用的基础样式。但没有银弹，推荐根据具体需求，裁剪和修改后再使用。
特色：1. 适应中文；2. 基于最新主流浏览器。
 */

/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
  margin: 0;
  padding: 0;
}

/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
  font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; }


/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
html, body {
	font-family: 'Roboto-Regular', 'SourceHanSansCN-Normal';
	font-size: 18px;
	color: #333;
}
.flex {
	display: flex;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
}
.justify-start {
	justify-content: flex-start;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}
a {
	text-decoration: none;
	color: #333;
	cursor: pointer;
}
img {
	/* max-width: 100%; */
	vertical-align: middle;
}
.img-top-2 {
	position: relative;
	top: -2px
}
hr {
	height: 1px;
	border: none;
}
hr.gray {
	background-color: #ddd;
}
.left {
	float: left;
}
.right {
	float: right;
}
.red-back {
	background-color: rgb(215, 0, 15);
}
.red-color {
	color: rgb(215, 0, 15);
}
.red-color_hover:hover {
	color: rgb(215, 0, 15);
}
.text-decoration {
	display: inline !important;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}
.clearBoth {
	clear: both;
}
.content {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
}
.content2 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.content3 {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
	font-size: 16px;
	color: rgb(75, 72, 72)
}
/*bootstrap*/
.row {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col-lg-3,
.col-lg-3-2,
.col-lg-4 {
	position: relative;
    width: 100%;
    padding-right: 15px;
	padding-left: 15px;
}
/* subpage-container */
.subpage-container {
	margin-top: 110px;
	padding: 40px 0;
	/* background-color:  */
}
/* breadcrumb */
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	list-style: none;
	font-size: 15px;
	font-family: 'SourceHanSansCN-Regular';
}
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding: 0 3px;
	content: ">";
	color: rgba(75, 72, 72);
}
.breadcrumb-item.active {
    color: rgb(215, 0, 15);
}
/* 图文common */
.article-title {
	font-size: 20px;
	color: rgb(215, 0, 15);
	border-bottom: 1px solid rgb(215, 0, 15);
	margin: 30px 0;
	padding-bottom: 5px;
	font-family: 'SourceHanSansCN-Medium';
	font-weight: 600;
}
.article-main {
	margin-bottom: 50px;
}
.article-main p img{
    height: auto;
    width: 100%;
}
.article-main p {
	font-size: 16px;
	line-height: 2;
	/* text-indent: 2em; */
	color: #4c4948;
	/*margin-bottom: 20px;*/
	font-family: 'SourceHanSansCN-Light';
	overflow: hidden;
}
.article-main img {
	/*display: block;*/
	max-width: 70%;
	/*margin: 40px auto;*/
}
.article-main .article-p-4 {
	font-size: 0;
}
.article-main .article-p-4 .article-img-box {
	display: inline-block;
	width: 25%;
	padding: 5px;
	vertical-align: top;
}
.article-main .article-p-4 img {
	max-width: 100%;
	margin: 10px 0
}
.article-main .article-p-4 .article-img-title {
	font-size: 14px;
}

/* 表格common */
.up-down-margin {
	margin: 30px 0
}
.up-down-margin-half {
	margin: 30px 0 15px
}
.up-down-padding {
	padding: 30px 0
}
.table-common {
	width: 100%;
	border: 1px solid rgb(215, 0, 15);
}
.table-common tr {
	border-bottom: 1px solid rgb(215, 0, 15);
}
.table-common td {
	padding: 10px;
	border-right: 1px solid rgb(215, 0, 15);
}
.table-common td img,
.file-icon {
	height: 20px;
}
.table-common.table-head {
	border: 1px solid rgb(215, 0, 15);
}
.table-common.table-head tr:first-child {
	background-color: rgb(215, 0, 15);
	color: #fff;
	font-weight: 600;
}
.table-common.table-head td {
	border-right: 1px solid rgb(215, 0, 15);
}
.table-common.table-head tr:nth-child(2n) {
	background-color: #fff;
}
.subpage-container-gray .table-title {
	color: rgb(215, 0, 15);
}
.subpage-container-gray .table-common.table-head {
	border: 1px solid #bdbdbd;
}
.subpage-container-gray .table-common.table-head tr {
	border-bottom: 1px solid #bdbdbd;
}
.subpage-container-gray .table-common.table-head tr:first-child {
	background-color: #999;
	border-right: 1px solid #999;
}
.subpage-container-gray .table-common.table-head td {
	border-right: 1px solid #bdbdbd;
}
.subpage-container-gray .table-common.table-head tr:first-child td {
	border-right: 1px solid #999;
}

/* 虚锚点 */
.anchor-hidden {
	position: relative;
	top: -120px;
	height: 0;
}

/* investor */
.investor-info-content {
	width: 100%;
	height: calc(100vh - 240px);
	height: -moz-calc(100vh - 240px);
	height: -webkit-calc(100vh - 240px);
	margin-top: 30px;
}
.investor-info-content .investor-iframe {
	width: 100%;
	height: 100%;
	border: none;
}
.investor-form-content {
	margin: 30px 0;
	font-size: 0;
}
.investor-form-content img {
	width: 100%;
	height: auto;
}

/* vue */
[v-cloak] {
	/* display: none; */
}

/* ie兼容 */
.ieWrapper .footer-container .col-lg  {
	width: 25%;
}
.ieWrapper .footer-container  {
	clear：both;
}
.ieWrapper .products-container .row  {
	overflow: hidden;
}
.ieWrapper .col-lg-3,
.ieWrapper .col-lg-3-2,
.ieWrapper .col-lg-4 {
	float: left;
}
.ieWrapper .breadcrumb li {
	display: inline-block;
}



/*--------------------------- header start ---------------------------*/
/* header */

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: white;
    -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2);
}

.header .header-container {
    /* display: flex;
    align-items: center; */
    width: 100%;
    height: 110px;
    margin: 0 auto;
    background-color: white;
}

.header .header-container div.logo {
    width: 300px;
    height: 100%;
    padding-right: 50px;
    line-height: 110px;
    border: none;
}

.header .header-container div.logo a {
    display: block;
    font-size: 0;
}
.header .header-container div.logo a .imgSvg {
    width: 100%;
    height: 69px;
}

.right-flex {
    width: 75%;
    width: calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    margin-left: 300px;
    padding: 20px 0;
}

/* header-sub-nav */

.header-sub-nav {
    padding-bottom: 5px;
    font-size: 0;
    text-align: right;
    border-bottom: 1px solid rgb(241, 239, 234);
}

.header-sub-nav>ul {
    display: inline-block;
    height: 26px;
}

.header-sub-nav>ul li {
    float: left;
    line-height: 20px;
    margin-left: 20px;
}

.header-sub-nav>ul li a {
    font-size: 14px;
    color: gray;
}


.header-sub-nav>ul li .lang-selector:hover {
    color: rgb(215, 0, 15);
}

.header-sub-nav .header-icon a {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../img/common/search-red.png) center center/ 100% 100% no-repeat;
}

/* header-nav */

.header-nav {
    padding-top: 10px;
}

.header-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-right: 67px;
}

.header-nav ul .primary>.label {
    font-family: 'SourceHanSansCN-Medium';
}

.header-nav ul .primary.active>.label, .header-nav ul .primary>.label:hover {
    color: #D7000F;
    border-bottom: 1px solid #D7000F;
}

.header-nav ul .primary .label:hover {
    color: #D7000F;
}

.nav-link .expanded-content {
    display: none;
    position: fixed;
    width: 100%;
    top: 110px;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .2);
}

.nav-link.active .expanded-content {
    display: block;
}

.expanded-content .expanded-row {
    /*display: flex;*/
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 240px;
    padding-right: 82px;
}

.expanded-content .expanded-left {
    width: 200px;
}

.expanded-content .expanded-left .nav-link {
    padding-left: 15px;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 1px solid #c9c9ca;
}

.expanded-content .expanded-left .nav-link:nth-child(1) {
    padding-left: 0;
    font-size: 16px;
    line-height: 40px;
    border-top: 1px solid #c9c9ca;
    background: url(../img/common/home.png) right center/20px auto no-repeat;
}

.expanded-content .expanded-left .nav-link .level-3 {
    font-size: 13px;
    margin-left: 15px;
}
.expanded-right {
    width: 300px;
    font-size: 0;
}

.expanded-right img {
    width: 100%;
}

/* mobile 图标 */

#header-language-btn {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../img/common/language-black.png) center center/ 100% 100% no-repeat;
}

#header-language-btn:hover {
    background: url(../img/common/language-red.png) center center/ 100% 100% no-repeat;
}

#header-search-btn {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../img/common/search-black.png) center center/100% 100% no-repeat;
}

#header-search-btn:hover {
    background: url(../img/common/search-red.png) center center/100% 100% no-repeat;
}

#header-menu-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/common/menu-black.png) center center/100% 100% no-repeat;
}

#header-menu-btn:hover {
    background: url(../img/common/menu-red.png) center center/100% 100% no-repeat;
}

/* lang, search, menu弹出框 */

.language-selector, .menu-selector, .weChat-selector {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100;
    will-change: transform;
    font-size: 16px;
}
.weChat-selector .weChat-center {
    width: 500px;
    height: 270px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}
.weChat-selector .weChat-center img {
    width: 200px;
    margin-bottom: 50px;
}

.language-selector.active, .menu-selector.active, .weChat-selector.active {
    display: block;
}

.language-selector>.language-container, .menu-selector>.menu-container, .weChat-selector>.weChat-container {
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    overflow-y: auto;
}

.language-selector .language, .menu-selector .menu {
    padding: 7px 0;
    margin: 0;
    text-align: left;
    font-size: 16px;
}

.menu-selector .text-decoration {
    display: block !important;
}

.menu-selector .menu .has-next-level {
    background: url(../img/common/arrow-down-black.png) right center / 16px auto no-repeat;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 0;
}

.menu-selector .menu .text {
    line-height: 35px;
    font-size: 14px;
    margin-bottom: 0;
}

.menu-selector .menu .sub-menu {
    display: none;
    text-indent: 1em;
}
.menu-selector .menu .sub-menu .level-3 a{
    text-indent: 2em;
}
.menu-selector .menu .sub-menu a:hover {
    color: rgb(215, 0, 15);
}

.menu-selector .menu .has-next-level.active {
    background: url(../img/common/arrow-up-black.png) right center / 16px auto no-repeat;
}

.language-selector .close-btn, .search-selector .close-btn, .menu-selector .close-btn, .weChat-selector .close-btn {
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/index/close-black.png) right center / 25px auto no-repeat;
}

.language-selector .close-btn:hover, .search-selector .close-btn:hover, .menu-selector .close-btn:hover {
    background: url(../img/index/close-red.png) right center / 25px auto no-repeat;
}

.search-selector {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fcfcfa;
    z-index: 100;
    will-change: transform;
    display: none;
    pointer-events: none;
}
.search-page {
    width: 100%;
    height: 100%;
}

.search-selector.active, .search-page.active {
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.search-selector .search-container,
.search-page .search-container {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1180px;
}
.search-page .search-container {
    padding: 0;
    margin: 50px 0;
}

.search-selector .search-container .search-row, .search-page .search-container .search-row {
    /* display: flex;
    align-items: center; */
    width: 100%;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid rgb(241, 239, 234);
}

.search-selector .search-container .search-row div[data-role="search"],
.search-selector .search-container .search-row div[data-role="submit"],
.search-page .search-container .search-row div[data-role="search"],
.search-page .search-container .search-row div[data-role="submit"] {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    float: left;
    width: 50px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
}

.search-selector .search-container .search-row div[data-role="search"] img,
.search-selector .search-container .search-row div[data-role="submit"] img,
.search-page .search-container .search-row div[data-role="search"] img,
.search-page .search-container .search-row div[data-role="submit"] img {
    margin: 16px 0;
    width: 26px;
    height: 26px;
}

.search-selector .search-container .search-row #search-input,
.search-page .search-container .search-row #search-input {
    float: left;
    width: calc(100% - 100px);
    height: 100%;
    padding: 10px 20px;
    /* flex: 1; */
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;
    border: 0;
    background: transparent;
    color: #010101;
}
.search-selector .search-container .search-row #search-input:focus,
.search-page .search-container .search-row #search-input:focus {
    border: 1px solid rgb(215, 0, 15);
}

/* 兼容ie */
.ieWrapper .header-nav ul {
    overflow: hidden;
    width: 100%;
}
.ieWrapper .header-nav ul li.primary {
    float: left;
    width: 12.5%;
}
.ieWrapper .header-nav ul li.mobile {
    float: left;
}
.ieWrapper .header-nav ul .mobile:nth-child(9) {
    margin-left: calc(100% - 126px);
    margin-left: -ms-calc(100% - 126px);
    margin-left: -moz-calc(100% - 126px);
    margin-left: -webkit-calc(100% - 126px);
    margin-left: -o-calc(100% - 126px);
}
.ieWrapper .header-nav ul li:last-child {
	width: auto;
}
.ieWrapper .expanded-content .expanded-row {
    overflow: hidden;
}
.ieWrapper .expanded-content .expanded-row .expanded-left {
    float: left;
}
.ieWrapper .expanded-content .expanded-row .expanded-right {
    float: right;
}
/*--------------------------- header end ---------------------------*/

/*--------------------------- pagebox start ---------------------------*/
.pages {
    padding: 15px 20px;
    text-align: left;
    text-align: center;
  }

  .pages a {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 4px;
    vertical-align: middle;
    float: none;
  }

  .pages a:hover {
    text-decoration: none;
    border: 1px solid #999;
  }

  .pages span.current {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 4px;
    vertical-align: middle;
    border: 1px solid rgb(215, 0, 15);
  }
  .pages a.prevPage, .pages a.nextPage {
    line-height: 33px;
  }
  .pages span.disabled {
    display: inline-block;
    height: 35px;
    line-height: 33px;
    padding: 0 15px;
    margin: 0 5px;
    color: #bfbfbf;
    background: #f2f2f2;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    vertical-align: middle;
  }

/*--------------------------- pagebox end ---------------------------*/

/*--------------------------- footer start ---------------------------*/

.footer-container .top-wrapper {
    padding: 50px 0;
}

.footer-container .top-wrapper .row {
    padding: 0 15px;
    justify-content: space-between;
}

.footer-container .main {
    display: block;
}

.footer-container .title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'SourceHanSansCN-Medium';
}

.footer-container .text {
    font-size: 18px;
    display: block;
    line-height: 2.2;
    font-family: 'SourceHanSansCN-Regular';
}

.footer-container .text .text-decoration {
    color: #fff;
}

.footer-container .text .text-decoration:hover {
    border-color: #fff;
}

.footer-container .logo-white {
    display: block;
    width: 300px;
    max-width: 90%;
    margin: 50px auto 0;
}

.footer-container .bottom-wrapper {
    height: 80px;
    line-height: 80px;
    background-color: #fff;
}

.footer-container .weChat, .footer-container .sina {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.footer-container a:hover {
    transform: translateY(-4px);
}

.footer-container .weChat {
    background: url('../img/index/weChat.png') no-repeat center;
    background-size: 100% auto;
    margin: 0 15px;
}

.footer-container .sina {
    background: url('../img/index/sina.png') no-repeat center;
    background-size: 100% auto
}

.footer-container .copyright {
    float: right;
    font-size: 18px;
    padding-right: 15px;
}
/*--------------------------- footer end ---------------------------*/

/* media--max */
@media screen and (max-width: 1200px) {
    /* header */
    .header .header-container {
        max-width: 1230px;
        padding: 0 15px;
    }
    .expanded-content .expanded-row {
        max-width: 1230px;
    }
    .header-nav ul .mobile {
        display: none;
    }
}
@media screen and (min-width: 1020px) and (max-width: 1199px) {
    /* header */
    .header .header-container div.logo {
        width: 275px;
        padding-right: 25px;
    }
    .right-flex {
        width: 75%;
        width: calc(100% - 275px);
        width: -moz-calc(100% - 275px);
        width: -webkit-calc(100% - 275px);
        width: -ms-calc(100% - 275px);
        margin-left: 275px;
    }
    .header-nav ul {
        margin-right: 18px;
    }
    .expanded-content .expanded-row {
        padding: 30px 33px 30px 193px;
    }
}
@media screen and (max-width: 1020px){
	.subpage-container {
		margin-top: 60px;
		padding: 20px 0
	}
	/* 虚锚点 */
	.anchor-hidden {
		top: -70px;
	}
	/* header */
    .header .header-container {
        height: 60px;
    }
    .header .header-container div.logo {
        line-height: 60px;
    }
    .header .header-container div.logo a .imgSvg {
        height: 40px;
    }
    .header .right-flex {
        padding: 0;
    }
    .header-sub-nav {
        display: none;
    }
    .header-nav {
        padding-top: 0;
        margin-right: 0;
    }
    .header-nav ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        margin-right: 0px;
    }
    .expanded-content .expanded-row {
        padding: 30px 33px 30px 0;
    }
    .header-nav ul .primary {
        display: none;
    }
    .header-nav ul .mobile {
        display: flex;
        align-items: center;
        height: 60px;
        padding: 20px 10px;
        font-size: 0px;
    }
    .ieWrapper .header-nav ul li.mobile {
        display: block;
    }
    .weChat-selector .weChat-center {
        width: 100%;
    }
	/* footer */
    .footer-container .logo-white {
        width: 200px;
    }
}
@media screen and (max-width: 768px){
	.col-lg-3-2 {
		width: 50%;
	    -ms-flex: 0 0 50%;
	    flex: 0 0 50%;
	    max-width: 50%;
	}
	/* 图文common */
	.article-main .article-p-4 .article-img-box {
		width: 100%;
	}
	/* ie兼容 */
	.ieWrapper .footer-container .col-lg  {
		width: 100%;
	}
	/* header */
    .header .header-container div.logo {
        width: 128px;
        padding-right: 28px;
    }
    .right-flex {
        width: 75%;
        width: calc(100% - 128px);
        width: -moz-calc(100% - 128px);
        width: -webkit-calc(100% - 128px);
        width: -ms-calc(100% - 128px);
        margin-left: 128px;
    }
	/* footer */
    .footer-container .top-wrapper {
        padding: 0 0 20px;
    }
    .footer-container .top-wrapper .row {
        padding: 0;
        justify-content: flex-start;
    }
    .footer-container .col-lg {
        border-bottom: 1px solid #fff;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .footer-container .title {
        background: url(../img/common/arrow-down-white.png) right center / 16px auto no-repeat;
        ;
        line-height: 46px;
        font-size: 16px;
        margin-bottom: 0;
    }
    .footer-container .text .text-decoration {
        font-size: 14px;
    }
    .footer-container .title.active {
        background: url(../img/common/arrow-up-white.png) right center / 16px auto no-repeat;
        ;
    }
    .footer-container .main {
        display: none;
        text-indent: 1em;
        padding-bottom: 10px;
    }
    .footer-container .logo-white {
        width: 100px;
        margin-top: 20px;
    }
    .footer-container .bottom-wrapper {
        height: 60px;
        line-height: 60px
    }
    .footer-container .copyright {
        font-size: 16px;
    }
}
@media screen and (max-width: 450px){
	/* 图文common */
	.article-title {
		margin: 10px 0;
		padding-bottom: 2px;
		font-size: 18px;
	}
	.article-main {
		margin-bottom: 30px;
	}
	.article-main p {
		margin-bottom: 10px;
	}
	.article-main img {
		max-width: 100%;
		margin: 20px auto;
	}
	/* 表格common */
	.up-down-margin {
		margin: 15px 0
	}
	.up-down-margin-half {
		margin: 15px 0 10px
	}
	.up-down-padding {
		padding: 15px 0
	}
	.table-common td {
		padding: 5px;
		font-size: 14px;
	}
}

/* media--min */
@media screen and (min-width: 768px){
	.col-lg-3,
	.col-lg-3-2 {
		width: 50%;
	    -ms-flex: 0 0 50%;
	    flex: 0 0 50%;
	    max-width: 50%;
	}
	.col-lg-4 {
		width: 33.33%;
	    -ms-flex: 0 0 33.333333%;
	    flex: 0 0 33.333333%;
	    max-width: 33.333333%;
	}
}
@media screen and (max-width: 1020px){

    .row_c{
        width: 50%;
    }
}
@media screen and (min-width: 1020px){
	.col-lg-3,
	.col-lg-3-2 {
		width: 25%;
	    -ms-flex: 0 0 25%;
	    flex: 0 0 25%;
	    max-width: 25%;
	}

    .row_c{
        width: 25%;
    }
}
.row-swiper{
    position: relative;
    overflow: hidden;
}
.boxx{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    transition: 1s;
}
.boxx2{
    position: absolute;
    flex-wrap: wrap;
    right: -100%;
    top: 0;
    transition: 1s;
}
.row_left{
    width: 30px;
    padding: 10px 5px;
    position: absolute;
    left: 0px;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}
.row_right{
    width: 30px;
    padding: 10px 5px;
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}
@media screen and (min-width: 1200px) {
    .header .header-container {
        max-width: 1230px;
        padding: 0 15px;
    }
    .expanded-content .expanded-row {
        max-width: 1230px;
    }
    .header-nav ul .mobile, .ieWrapper .header-nav ul .mobile {
        display: none;
    }
}

@media print {
    .header {
        display: none;
        position: relative;
        box-shadow: none;
    }
    .header-nav ul {
        margin-right: 0;
    }
    .subpage-container {
        margin-top: 0;
    }
    .detail-title {
        margin-top: 0;
    }
    .detail-title .time .print {
        display: none;
    }
    .content3 nav {
        display: none;
    }
    .footer-container {
        display: none;
    }
}
