* {
    box-sizing: border-box;
}

* {
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .1);
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 5px;
    background: rgba(0, 0, 0, .25);
    transition: color .2s ease
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, .15)
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 135, 139, .8)
}

html,
body {
    min-width: 1420px;
    font-family: "Microsoft YaHei", Helvetica, Arial, Verdana, sans-serif;
}

html,
body,
ul,
p,
h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #6D6E71
}

a:focus {
    outline: none;
}

a.link:hover {
    opacity: .5;
    /* IE 4-9 */
    filter: alpha(opacity=50);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
}

img {
    border: none;
    object-fit: cover;
}

ul,
li {
    list-style: none;
}

.btn {
    border: 1px solid #fff;
    padding: 10px 17px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    background: #D40815;
    font-weight: 200;
}

.btn:hover {
    opacity: .5;
    /* IE 4-9 */
    filter: alpha(opacity=50);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
}

.clear {
    clear: both;
}

.empty {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    color: #ccc;
    display: inline-block;
    font-size: 16px;
    margin-left: -100px;
    width: 200px;
    text-align: center;
}


/***/

div.slideBox {
    position: relative;
    overflow: hidden;
}

div.slideBox ul.items {
    position: relative;
    float: left;
    background: none;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
}

div.slideBox ul.items li {
    float: left;
    background: none;
    list-style: none;
    padding: 0px;
    margin: 0px;
    position: relative;
    width: 100%;
}


/* div.slideBox ul.items li a {
    float: left;
    line-height: normal !important;
    padding: 0px !important;
    border: none;
} */

div.slideBox ul.items li a img {
    margin: 0px !important;
    padding: 0px !important;
    display: block;
    border: none
    /*For IE.ADD.JENA.201206300844*/
    ;
}

div.slideBox div.tips {
    position: absolute;
    bottom: 30px;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    text-align: center;
}

div.slideBox div.tips div.title {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
}

div.slideBox div.tips div.title a {
    color: #FFF;
    font-size: 18px;
    line-height: 50px;
    margin-left: 10px;
    text-decoration: none;
}

div.slideBox div.tips div.title a:hover {
    text-decoration: underline !important;
}

div.slideBox div.tips div.nums {
    /* position: absolute;
    right: 0px;
    top: 0px;
    height: 100%; */
    display: inline-block;
}

div.slideBox div.tips div.nums a {
    cursor: pointer;
    display: inline-block;
    float: left;
    width: 20px;
    height: 20px;
    text-indent: -99999px;
    margin: 15px 40px 0px 0px;
    background: url('/assets/web/images/ic_ban_point_n.png') no-repeat center;
}

div.slideBox div.tips div.nums a:last-child {
    margin-right: 0;
}

div.slideBox div.tips div.nums a.active {
    background-image: url('/assets/web/images/ic_ban_point_s.png');
}


/***/

.page-main {
    background: #EFEFEF;
    margin-top: 80px;
}

.page-main-banner {
    position: relative;
    min-height: 300px;
    min-width: 1380px;
    font-size: 0;
}

.page-main-banner img {
    width: 100%;
    height: auto;
}

.page-main-banner-content {
    position: absolute;
    top: 50%;
    right: 25%;
    margin-top: -80px;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    text-align: right;
}

.page-main-banner-content span {
    display: block;
}

.page-main-banner-content .ch {
    font-size: 50px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-main-banner-content .en {
    font-size: 50px;
    opacity: .3;
    /* IE 4-9 */
    filter: alpha(opacity=30);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=30);
    margin-bottom: 15px;
}

.page-main-nav div {
    width: 1380px;
    margin: 0px auto;
    padding: 30px 0;
}

.page-main-nav a,
.page-main-nav span,
.page-main-nav img {
    display: inline-block;
    vertical-align: middle;
    color: #58595B;
    font-size: 16px;
}

.page-main-nav a:hover {
    opacity: .5;
    /* IE 4-9 */
    filter: alpha(opacity=50);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
}

.page-main-nav img {
    height: 16px;
    margin: 0 5px;
}

.page-main-article-content {
    position: relative;
    width: 1380px;
    margin: 85px auto 0px auto;
    padding-bottom: 60px;
}

.page-main-article-content h1 {
    font-size: 30px;
    font-weight: 400;
    color: #58595B;
    line-height: 36px;
    text-align: center;
}

.page-main-article-content h2 {
    font-size: 16px;
    font-weight: 400;
    color: #58595B;
    line-height: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.slideBox .btn-group .btn {
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
}

.slideBox .btn-group .pagenext {
    background-image: url('__CDN__/assets/web/images/ic_page_right.png');
    background-repeat: no-repeat;
    background-size: 24px;
}

.slideBox .btn-group .pagepre {
    background-image: url('__CDN__/assets/web/images/ic_page_left.png');
    background-repeat: no-repeat;
    background-size: 24px;
}

.cpt-toast {
    background: #07111b !important;
}

.dialog {
    position: fixed;
    z-index: 99;
    display: none;
}

.dialog .mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    opacity: .3;
    /* IE 4-9 */
    filter: alpha(opacity=30);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=30);
}

.dialog .box {
    position: fixed;
    width: 640px;
    height: 580px;
    left: 50%;
    top: 50%;
    margin-top: -290px;
    margin-left: -320px;
    background-color: #fff;
    box-shadow: 1px 4px 16px 0px #C6C6C6;
    border-radius: 6px;
}

.box-header {
    height: 90px;
    line-height: 90px;
    text-align: center;
}

.box-header h4 {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #222222;
}

.box .close {
    width: 16px;
    height: 16px;
    background: url('/assets/web/images/ic_pop_close.png') no-repeat center;
    background-size: 16px;
    position: absolute;
    top: 13px;
    right: 13px;
    cursor: pointer;
    z-index: 99;
}

.box-header .close:hover {
    opacity: .5;
    /* IE 4-9 */
    filter: alpha(opacity=50);
    /*This works in IE 8 & 9 too*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /*IE4-IE9*/
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
}

.box-body {
    padding: 0 60px;
    text-align: center;
}