@charset "UTF-8";
/**
 *
 * npm install -g sass
 * // 转换
 * sass index.scss index.css
 * // 监听
 * sass --watch index.scss:index.css
 * // 编译格式
 * sass --watch input.scss:index.css --style compact
 */
/**
*    @description: 变量;
*    @create date: 2023-5-8;
*/
/**
*    @description: 重置样式;
*    @create date: 2023-2-23;
*/
body {
    font-size: 12px;
    font-family: "微软雅黑";
    margin: 0 auto;
    background-color: #fff;
}

dl, dd, p, form, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

em, i {
    font-style: normal;
}

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

a {
    color: #333;
    text-decoration: none;
    outline: none;
    font-weight: 400;
}
a:hover {
    cursor: pointer;
    color: #ff0000 !important;
}

img {
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img:hover {
    opacity: 0.8;
}

span {
    display: inline-block;
}

input, select, button, textarea {
    border-radius: 0;
    border: none;
    outline: none;
    background: none;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: none;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.row {
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.d_flex {
    display: flex;
}

.flex_1 {
    flex: 1;
}

.flex_column {
    flex-direction: column;
}

.flex_row {
    flex-direction: row;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_nowrap {
    flex-wrap: nowrap;
}

.flex_shrink {
    flex-shrink: 0;
}

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

.j_center {
    justify-content: center;
}

.j_end {
    justify-content: flex-end;
}

.j_sb {
    justify-content: space-between;
}

.a_center {
    align-items: center;
}

.a_start {
    align-items: flex-start;
}

.a_end {
    align-items: flex-end;
}

.a_stretch {
    align-items: stretch;
}

.a_self-start {
    align-self: flex-start;
}

.a_self-auto {
    align-self: auto;
}

.a_self-end {
    align-self: flex-end;
}

.a_self-stretch {
    align-self: stretch;
}

.a_self-baseline {
    align-self: baseline;
}

/* 省略号 */
.text_overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 多行文本省略号 */
.text_overflow_2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 右箭头 */
.right-arrow:after {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    right: 5px;
    top: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(0, -50%) rotate(-135deg);
    -webkit-transform: translate(0, -50%) rotate(-135deg);
}

.header_box {
    height: 38px;
    background: url(../images/top_bg1.jpg) repeat-x center center;
}
.header_box > .clearfix {
    overflow: inherit;
}
.header_box > .clearfix .menu_navigation {
    float: right;
}
.header_box > .clearfix .menu_navigation ul li {
    height: 38px;
}
.header_box > .clearfix .menu_navigation ul li.active, .header_box > .clearfix .menu_navigation ul li:hover {
    overflow: inherit;
}
.header_box > .clearfix .menu_navigation ul li.active .drop_menu_box, .header_box > .clearfix .menu_navigation ul li:hover .drop_menu_box {
    opacity: 1 !important;
    transform: rotateX(0) !important;
    transition: opacity 0.1s, transform 0.3s !important;
    visibility: visible !important;
}
.header_box > .clearfix .menu_navigation ul li.active > .item, .header_box > .clearfix .menu_navigation ul li:hover > .item {
    font-weight: bold;
    color: #ff0000;
}
.header_box > .clearfix .menu_navigation ul li .item {
    display: inline-block;
    line-height: 38px;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
.header_box > .clearfix .menu_navigation ul li .drop_menu_box {
    position: absolute;
    top: 38px;
    right: 0px;
    z-index: 20;
    padding: 10px;
    width: 70px;
    background: #000;
    box-shadow: 0px 2px 6px 1px rgba(191, 191, 191, 0.4);
    border-radius: 4px;
    transform: rotateX(-90deg);
    transform-origin: 0 0;
    transition: transform 0.3s, opacity 0.1s 0.2s, visibility 0.1s 0.3s;
    visibility: hidden;
    backface-visibility: hidden;
}
.header_box > .clearfix .menu_navigation ul li .drop_menu_box a {
    float: left;
    min-width: 70px;
    height: 28px;
    color: #999;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
}
.header_box > .clearfix .menu_navigation ul li .drop_menu_box a:hover {
    color: #ff0000;
}
.header_box .w10_box {
    overflow: hidden;
}
.header_box .w10_box .logo_item {
    float: left;
}
.header_box .w10_box .link_item {
    float: right;
    height: 26px;
    margin-top: 4px;
    color: #b26400;
}
.header_box .w10_box .link_item a {
    color: #b26400;
    font-size: 12px;
}
.header_box .w10_box .link_item a:visited {
    color: #ff0000;
}

.w10_box {
    width: 1000px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}

.w992_box {
    width: 992px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.top_main_box {
    height: 283px;
    background: #000 url(../images/topindex_bg.jpg) no-repeat center center;
}
.top_main_box .w10_box {
    height: 100%;
    position: relative;
}
.top_main_box .mobile_menu_btn, .top_main_box .mobile_menu_mask {
    display: none;
}
.top_main_box .bottom_item {
    position: absolute;
    bottom: 5px;
    line-height: 30px;
    overflow: hidden;
    left: 55px;
    right: 45px;
}
.top_main_box .bottom_item a {
    font-size: 14px;
    color: #b26400;
    margin-right: 8px;
}
.top_main_box .bottom_item a:hover {
    color: #ff0000;
}
.top_main_box .bottom_item .fr a {
    margin-right: 0px;
}
.top_main_box .m_menu {
    display: none;
}

.main_box {
    background: #000 url(../images/main_bg.jpg) no-repeat center top;
    overflow: hidden;
}

.form_item_template {
    width: 327px;
    height: 40px;
    position: relative;
    background: url(../images/main_search_bg1.jpg) no-repeat;
}
.form_item_template .input {
    position: absolute;
    width: 155px;
    height: 18px;
    border: 1px solid #60544E;
    top: 8px;
    left: 85px;
    background: #0b0b0b;
    line-height: 20px;
    padding: 2px 4px;
    color: #FFFFFF;
}
.form_item_template .input input {
    display: block;
}
.form_item_template .button {
    position: absolute;
    display: inline-block;
    right: 5px;
    top: 6px;
    cursor: pointer;
}

.img_text_item {
    overflow: hidden;
}
.img_text_item.lr {
    padding: 0 37px;
}
.img_text_item.lr li {
    margin-bottom: 10px;
}
.img_text_item.lr li a p {
    text-align: left;
    margin: 5px 0;
    font-size: 14px;
}
.img_text_item.lr li a time {
    color: #a99877;
    font-size: 12px;
}
.img_text_item li {
    float: left;
}
.img_text_item li a {
    display: block;
    height: 100%;
}
.img_text_item li a .img_item {
    display: block;
    overflow: hidden;
}
.img_text_item li a p {
    margin-bottom: 5px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    color: #b26400;
    box-sizing: border-box;
}
.img_text_item li:hover a p {
    color: #ff0000;
}

.list_text_bg_template {
    overflow: hidden;
}
.list_text_bg_template.blue dl dt a {
    color: #0099CC !important;
}
.list_text_bg_template.blue dl dd {
    background: url(../images/list_text_bg1.gif) no-repeat;
}
.list_text_bg_template.blue dl dd a {
    color: #0099CC;
}
.list_text_bg_template dl a {
    display: block;
    color: #b26400;
    overflow: hidden;
}
.list_text_bg_template dl a:hover {
    color: #ff0000;
}
.list_text_bg_template dl dt a {
    height: 35px;
    line-height: 35px;
    font-weight: 500;
    text-indent: 20px;
}
.list_text_bg_template dl dd {
    height: 151px;
    padding-left: 50px;
    background: url(../images/list_text_bg.gif) no-repeat;
}
.list_text_bg_template dl dd a {
    height: 30px;
    line-height: 30px;
    font-weight: 400;
    padding-right: 20px;
}

.main_template {
    padding-top: 25px;
}
.main_template .l_item {
    float: left;
    position: relative;
}
.main_template .l_item .content {
    position: relative;
}
.main_template .l_item .content:before, .main_template .l_item .content:after {
    content: "";
    position: absolute;
    width: 100%;
}
.main_template .l_item .content:before {
    top: 0;
    left: 0;
    right: 0;
}
.main_template .l_item .content:after {
    bottom: 0;
    left: 0;
}
.main_template .r_item {
    float: right;
}
.main_template .r_item .content {
    position: relative;
}
.main_template .r_item .content:before, .main_template .r_item .content:after {
    content: "";
    position: absolute;
    width: 100%;
}
.main_template .r_item .content:before {
    top: 0;
    left: 0;
    right: 0;
}
.main_template .r_item .content:after {
    bottom: 0;
    left: 0;
}

.router_template {
    line-height: 22px;
    padding: 4px 0;
    color: #b89d70;
}
.router_template:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    position: relative;
    top: 4px;
    background: url(../images/router_icon.gif) no-repeat center center;
}
.router_template a {
    margin-right: 6px;
    font-weight: 400;
    color: #b26400;
    font-size: 12px;
}
.router_template a:first-child {
    margin-left: 6px;
}
.router_template a:hover {
    color: #ff0000;
    text-decoration: underline;
}
.router_template span {
    display: inline;
}

.register_img_template {
    width: 482px;
    height: 76px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}
.register_img_template i {
    position: absolute;
}
.register_img_template i.t1, .register_img_template i.t3, .register_img_template i.t5, .register_img_template i.t7 {
    width: 7px;
    height: 8px;
    z-index: 1;
}
.register_img_template i.t2, .register_img_template i.t6 {
    height: 8px;
    width: 100%;
}
.register_img_template i.t4, .register_img_template i.t8 {
    width: 7px;
    height: 100%;
}
.register_img_template i.t1 {
    top: 0;
    left: 0;
    background: url(../images/register_1.jpg) no-repeat center center;
}
.register_img_template i.t2 {
    top: 0;
    left: 7px;
    background: url(../images/register_2.jpg) repeat-x;
}
.register_img_template i.t3 {
    top: 0;
    right: 0;
    background: url(../images/register_3.jpg) no-repeat center center;
}
.register_img_template i.t4 {
    top: 8px;
    right: 0;
    background: url(../images/register_4.jpg) no-repeat center center;
}
.register_img_template i.t5 {
    bottom: 0;
    right: 0;
    background: url(../images/register_5.jpg) no-repeat center center;
}
.register_img_template i.t6 {
    bottom: 0;
    right: 7px;
    background: url(../images/register_6.jpg) repeat-x;
}
.register_img_template i.t7 {
    bottom: 0;
    left: 0;
    background: url(../images/register_7.jpg) repeat-x;
}
.register_img_template i.t8 {
    top: 8px;
    left: 0;
    background: url(../images/register_8.jpg) no-repeat center center;
}
.register_img_template .img_item {
    display: inline-block;
    margin-left: 7px;
    margin-top: 8px;
    width: 468px;
    height: 60px;
    overflow: hidden;
}

.boder_img_template {
    width: 490px;
    height: 45px;
    margin: 20px auto 0;
    position: relative;
}
.boder_img_template span, .boder_img_template em {
    position: absolute;
}
.boder_img_template .t_icon, .boder_img_template .b_icon {
    width: 100%;
    height: 12px;
}
.boder_img_template .t_icon:before, .boder_img_template .t_icon:after, .boder_img_template .b_icon:before, .boder_img_template .b_icon:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 12px;
    top: 0;
    position: absolute;
}
.boder_img_template .t_icon em, .boder_img_template .b_icon em {
    position: absolute;
    width: 468px;
    height: 12px;
    left: 11px;
    right: 11px;
}
.boder_img_template .t_icon em:after, .boder_img_template .t_icon em:before, .boder_img_template .b_icon em:after, .boder_img_template .b_icon em:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 234px;
    height: 100%;
}
.boder_img_template .t_icon {
    top: 0;
}
.boder_img_template .t_icon:before, .boder_img_template .t_icon:after {
    top: 0;
}
.boder_img_template .t_icon:before {
    left: 0;
    background: url(../images/border_top_bg1.gif) no-repeat center center;
}
.boder_img_template .t_icon:after {
    right: 0;
    background: url(../images/border_top_bg4.gif) no-repeat center center;
}
.boder_img_template .t_icon em:after, .boder_img_template .t_icon em:before {
    top: 0;
}
.boder_img_template .t_icon em:before {
    left: 0;
    background: url(../images/border_top_bg2.gif);
}
.boder_img_template .t_icon em:after {
    right: 0;
    background: url(../images/border_top_bg3.gif);
}
.boder_img_template .r_icon {
    top: 12px;
    right: 0;
}
.boder_img_template .r_icon:before, .boder_img_template .r_icon:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    right: 0;
    position: absolute;
}
.boder_img_template .r_icon:before {
    top: 0;
    background: url(../images/border_r_bg1.gif) no-repeat center center;
}
.boder_img_template .r_icon:after {
    top: 11px;
    background: url(../images/border_r_bg2.gif) no-repeat center center;
}
.boder_img_template .b_icon {
    bottom: 0;
}
.boder_img_template .b_icon:before, .boder_img_template .b_icon:after {
    bottom: 0;
}
.boder_img_template .b_icon:before {
    left: 0;
    background: url(../images/border_bot_bg1.gif) no-repeat center center;
}
.boder_img_template .b_icon:after {
    right: 0;
    background: url(../images/border_bot_bg4.gif) no-repeat center center;
}
.boder_img_template .b_icon em:after, .boder_img_template .b_icon em:before {
    bottom: 0;
}
.boder_img_template .b_icon em:before {
    left: 0;
    background: url(../images/border_bot_bg2.gif) no-repeat center center;
}
.boder_img_template .b_icon em:after {
    right: 0;
    background: url(../images/border_bot_bg3.gif) no-repeat center center;
}
.boder_img_template .l_icon {
    top: 12px;
    left: 0;
}
.boder_img_template .l_icon:before, .boder_img_template .l_icon:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    left: 0;
    position: absolute;
}
.boder_img_template .l_icon:before {
    top: 0;
    background: url(../images/border_l_bg1.gif) no-repeat center center;
}
.boder_img_template .l_icon:after {
    top: 11px;
    background: url(../images/border_l_bg2.gif) no-repeat center center;
}

.page_box_template {
    text-align: center;
    padding: 15px 0;
    color: #b89d70;
}
.page_box_template em {
    color: #b89d70;
}
.page_box_template a {
    color: #b26400;
}
.page_box_template span {
    display: inline-block;
    background-color: #fff;
    width: 28px;
}
.page_box_template span input {
    display: block;
    width: 24px;
    text-align: center;
    font-weight: bold;
}

.gcwPage {
    text-align: center;
    margin: 20px 0;
}

.gcwPage span, .gcwPage a {
    display: inline-block;
    vertical-align: top;
    height: 34px;
    line-height: 34px;
    min-width: 15px;
    width: auto;
    color: #b26400;
    font-size: 14px;
    margin-left: 5px;
    font-weight: 500;
    background-color: transparent;
}

.gcwPage a:hover,
.gcwPage .currentPage {
    color: #FF0000;
}

.star_template {
    width: 72px;
    height: 10px;
    position: relative;
    overflow: hidden;
    background: url(../images/icon_star.png) no-repeat;
}
.star_template i {
    position: absolute;
    width: 100%;
    height: 10px;
    background: url(../images/icon_star.png) no-repeat;
    background-position: 0 -10px;
}

.switch_group {
    margin-top: 25px;
}
.switch_group span {
    font-size: 16px;
    margin-right: 20px;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.switch_group span a{
    color: #b26400;
}
.switch_group span.active {
    background: url(../images/content_title.gif) no-repeat center center;
    background-size: contain;
}

.switch_box .switch_list {
    display: none;
}
.switch_box .switch_list.active {
    display: block;
}

.footer_box {
    height: 228px;
    background: url(../images/bot_bg.jpg) repeat-x center center;
}
.footer_box .w10_box {
    overflow: hidden;
    padding-top: 90px;
}
.footer_box .w10_box .left_item {
    float: left;
    width: 740px;
}
.footer_box .w10_box .left_item p {
    margin-bottom: 0;
    color: #b26400;
    text-align: right;
}
.footer_box .w10_box .left_item p a {
    color: #b26400;
}
.footer_box .w10_box .left_item p img {
    display: inline-block;
    width: 20px;
    height: 20px;
}
.footer_box .w10_box .right_item {
    width: 260px;
    float: right;
    text-align: left;
}
.footer_box .w10_box .right_item .img_item {
    display: inline-block;
    margin-left: 20px;
    width: 86px;
    height: 54px;
}

.index_html .l_item {
    float: left;
    width: 386px;
    margin-top: 15px;
}
.index_html .l_item .template2_box {
    padding: 36px 0 31px;
    position: relative;
}
.index_html .l_item .template2_box:after, .index_html .l_item .template2_box:before {
    content: "";
    width: 100%;
    position: absolute;
}
.index_html .l_item .template2_box:before {
    top: 0;
    height: 31px;
    background: url(../images/l_item_top.gif) no-repeat center;
}
.index_html .l_item .template2_box:after {
    bottom: 0;
    height: 36px;
    background: url(../images/l_item_bot.gif) no-repeat center;
}
.index_html .l_item .template2_box .content {
    padding: 0 25px;
    background: url(../images/l_item_bg.gif);
}
.index_html .l_item .template2_box .content .slides_box {
    margin-bottom: 13px;
    width: 336px;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img {
    width: 100%;
    height: 230px;
    position: relative;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img li {
    width: 100%;
    height: 100%;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img li a {
    display: block;
    width: 100%;
    height: 230px;
    position: relative;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img li a .img_item {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img li a .mask {
    padding-top: 66px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    overflow: hidden;
    background: url(../images/slider_text_bg.png) repeat-x;
}
.index_html .l_item .template2_box .content .slides_box .slider_big_img li a:hover .mask {
    color: #e6cda1;
}
.index_html .l_item .template2_box .content .slides_box .slider_small_img {
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
}
.index_html .l_item .template2_box .content .slides_box .slider_small_img a {
    float: left;
    display: block;
    width: 84px;
    height: 70px;
    box-sizing: border-box;
    border: 4px solid transparent;
}
.index_html .l_item .template2_box .content .slides_box .slider_small_img a .img_item {
    display: block;
    margin: 0 auto;
    width: 76px;
    height: 62px;
    overflow: hidden;
}
.index_html .l_item .template2_box .content .slides_box .slider_small_img a.cur {
    border-color: #e6cda1;
}
.index_html .l_item .template2_box .content .slides_box .btn {
    display: block;
    width: 34px;
    height: 47px;
    position: absolute;
    top: 95px;
    z-index: 2;
    background: url(../images/slider_btn.png) no-repeat;
}
.index_html .l_item .template2_box .content .slides_box .btn.prev {
    left: -34px;
    background-position: 0 0;
    border-radius: 0 5px 5px 0;
}
.index_html .l_item .template2_box .content .slides_box .btn.next {
    right: -34px;
    background-position: -34px 0;
    border-radius: 5px 0 0 5px;
}
.index_html .l_item .template2_box .content .new_download dt {
    position: relative;
    height: 40px;
    line-height: 40px;
    color: #999;
    font-weight: bold;
    font-size: 14px;
    padding-left: 30px;
}
.index_html .l_item .template2_box .content .new_download dt:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 4px;
    height: 22px;
    background-color: #b89d70;
    top: 8px;
    left: 14px;
}
.index_html .l_item .template2_box .content .new_download dd {
    padding: 0 5px;
}
.index_html .l_item .template2_box .content .new_download dd ul {
    padding-bottom: 20px;
    padding-left: 10px;
}
.index_html .l_item .template2_box .content .new_download dd ul li {
    height: 18px;
    line-height: 18px;
    margin-top: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.index_html .l_item .template2_box .content .new_download dd ul li a {
    font-weight: 400;
    color: #b26400;
    position: relative;
    font-size: 14px;
    display: inline-block;
    width: 210px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.index_html .l_item .template2_box .content .new_download dd ul li a:hover {
    color: #ff0000;
}
.index_html .l_item .template2_box .content .new_download dd ul li .time {
    float: right;
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.index_html .l_item .template2_box .content .database .text_list_box li a {
    width: 310px;
}
.index_html .l_item .switch_content_box {
    display: none;
}
.index_html .r_item {
    float: right;
    width: 604px;
    position: relative;
    margin-bottom: 70px;
}
.index_html .r_item:after, .index_html .r_item:before, .index_html .r_item .jiao {
    content: "";
    width: 100%;
    position: absolute;
}
.index_html .r_item .jiao {
    top: 0;
    height: 13px;
    background: url(../images/main_bg_top_top.gif) no-repeat center;
}
.index_html .r_item:before {
    top: 13px;
    height: 89px;
    background: url(../images/main_bg_top.gif) no-repeat center;
}
.index_html .r_item:after {
    bottom: -36px;
    height: 36px;
    background: url(../images/main_bg_bot.gif) no-repeat 0;
}
.index_html .r_item .content {
    background: url(../images/main_bg.gif);
    padding-top: 120px;
}
.index_html .r_item .content .h1_box {
    text-align: center;
}
.index_html .r_item .content .h1_box h1 a {
    font-size: 22px;
    font-weight: bold;
    color: #b26400;
}
.index_html .r_item .content .h1_box .title {
    margin-top: 5px;
    color: #b89d70;
}
.index_html .r_item .content .h1_box .title a {
    color: #b26400;
}
.index_html .r_item .content .text_list_box {
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 15px;
}
.index_html .r_item .content .text_list_box li {
    height: 18px;
    line-height: 18px;
    margin-top: 15px;
    overflow: hidden;
}
.index_html .r_item .content .text_list_box li a {
    font-weight: 400;
    color: #b26400;
    position: relative;
    font-size: 14px;
    display: inline-block;
    width: 480px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.index_html .r_item .content .text_list_box li a:hover {
    color: #ff0000;
}
.index_html .r_item .content .text_list_box li a:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    position: relative;
    top: -2px;
    left: 2px;
    background-color: #999;
    transform: rotate(-45deg);
}
.index_html .r_item .content .text_list_box li .time {
    float: right;
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.index_html .r_item .content .template_img_box {
    width: 556px;
    height: 47px;
    margin: 0 auto;
}
.index_html .r_item .content .w556_box {
    width: 556px;
    margin: 0 auto;
}
.index_html .r_item .content .template_box {
    position: relative;
}
.index_html .r_item .content .template_box .bg {
    width: 100%;
    height: 12px;
    margin: 0 auto;
    position: absolute;
}
.index_html .r_item .content .template_box .bg:after, .index_html .r_item .content .template_box .bg:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 34px;
    height: 100%;
}
.index_html .r_item .content .template_box .t_img:before, .index_html .r_item .content .template_box .b_img:before {
    width: 11px;
    left: 0;
    top: 0;
    background: url(../images/hot_t1.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .t_img:after, .index_html .r_item .content .template_box .b_img:after {
    width: 11px;
    right: 0;
    top: 0;
    background: url(../images/hot_t5.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .t_img .t2, .index_html .r_item .content .template_box .b_img .t2 {
    display: inline-block;
    height: 12px;
    width: 100%;
    margin-left: 12px;
    background: url(../images/hot_t2.gif) repeat-x center center;
}
.index_html .r_item .content .template_box .t_img .t3, .index_html .r_item .content .template_box .t_img .t4, .index_html .r_item .content .template_box .b_img .t3, .index_html .r_item .content .template_box .b_img .t4 {
    position: absolute;
    display: inline-block;
    height: 12px;
    width: 12px;
    top: 0;
}
.index_html .r_item .content .template_box .t_img .t3, .index_html .r_item .content .template_box .b_img .t3 {
    left: 11px;
    background: url(../images/hot_t3.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .t_img .t4, .index_html .r_item .content .template_box .b_img .t4 {
    right: 11px;
    background: url(../images/hot_t4.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .b_img {
    bottom: 0;
}
.index_html .r_item .content .template_box .b_img:before {
    background: url(../images/hot_b1.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .b_img:after {
    background: url(../images/hot_b5.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .b_img .t2 {
    display: inline-block;
    height: 100%;
    background: url(../images/hot_b2.gif) repeat-x center center;
}
.index_html .r_item .content .template_box .l_img, .index_html .r_item .content .template_box .r_img {
    width: 11px;
    height: 122px;
    top: 15px;
}
.index_html .r_item .content .template_box .l_img:before, .index_html .r_item .content .template_box .l_img:after, .index_html .r_item .content .template_box .r_img:before, .index_html .r_item .content .template_box .r_img:after {
    width: 11px;
    height: 11px;
    left: 0;
}
.index_html .r_item .content .template_box .l_img:before, .index_html .r_item .content .template_box .r_img:before {
    top: -4px;
    background: url(../images/hot_l1.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .l_img:after, .index_html .r_item .content .template_box .r_img:after {
    bottom: -4px;
    background: url(../images/hot_l5.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .l_img .t2, .index_html .r_item .content .template_box .r_img .t2 {
    display: inline-block;
    width: 11px;
    height: 100%;
    background: url(../images/hot_l2.gif) repeat-x center center;
}
.index_html .r_item .content .template_box .r_img {
    right: 0;
}
.index_html .r_item .content .template_box .r_img:before {
    background: url(../images/hot_r1.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .r_img:after {
    background: url(../images/hot_r5.gif) no-repeat center center;
}
.index_html .r_item .content .template_box .r_img .t2 {
    display: inline-block;
    background: url(../images/hot_r2.gif) repeat-x center center;
}
.index_html .r_item .content .rmxz_box {
    margin: 25px auto;
    overflow: hidden;
}
.index_html .r_item .content .rmxz_box a {
    color: #b26400;
}
.index_html .r_item .content .rmxz_box .left_item {
    float: left;
    width: 331px;
}
.index_html .r_item .content .rmxz_box .left_item .link {
    color: #b89d70;
}
.index_html .r_item .content .rmxz_box .left_item .download {
    overflow: hidden;
}
.index_html .r_item .content .rmxz_box .left_item .download dl {
    width: 165px;
    float: left;
}
.index_html .r_item .content .rmxz_box .left_item .download dl dt {
    color: #b89d70;
    height: 26px;
    line-height: 26px;
    display: none;
}
.index_html .r_item .content .rmxz_box .left_item .download dl dd {
    margin-top: 10px;
}
.index_html .r_item .content .rmxz_box .left_item .download dl dd a {
    display: block;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
    color: #b26400;
    margin-top: 3px;
}
.index_html .r_item .content .rmxz_box .right_item {
    width: 221px;
    height: 151px;
    float: right;
}
.index_html .r_item .content .rmxz_box .right_item .img_item {
    display: block;
    width: 188px;
    height: 122px;
    margin: 15px auto 0;
    overflow: hidden;
}
.index_html .r_item .content .yxsp_box {
    overflow: hidden;
}
.index_html .r_item .content .yxsp_box a {
    display: inline-block;
    width: 185px;
    height: 152px;
    margin-bottom: 20px;
    float: left;
    background: url(../images/video_bg.gif) no-repeat center center;
}
.index_html .r_item .content .yxsp_box a .img_item {
    display: block;
    width: 158px;
    height: 100px;
    margin: 17px auto 0;
    overflow: hidden;
}
.index_html .r_item .content .yxsp_box a p {
    width: 130px;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
    margin-left: 15px;
    color: #b26400;
}
.index_html .r_item .content .yxsp_box a p:hover {
    color: #ff0000;
}
.index_html .r_item .content .photo_links {
    text-align: center;
    margin: 15px 0;
    color: #b89d70;
}
.index_html .r_item .content .photo_links a {
    color: #b26400;
}
.index_html .r_item .content .photo_box {
    overflow: hidden;
}
.index_html .r_item .content .photo_box a {
    display: inline-block;
    width: 185px;
    height: 152px;
    margin-bottom: 20px;
    float: left;
    background: url(../images/photo_bg.gif) no-repeat center center;
}
.index_html .r_item .content .photo_box a .img_item {
    display: block;
    width: 162px;
    height: 126px;
    margin: 12px auto 0;
    overflow: hidden;
}
.index_html .r_item .content .hzhb_box {
    width: 522px;
    height: 95px;
    overflow: hidden;
    margin: 0 auto 10px;
}
.index_html .r_item .content .hzhb_box .l_img, .index_html .r_item .content .hzhb_box .r_img {
    height: 70px;
}
.index_html .r_item .content .hzhb_box .links {
    width: 500px;
    margin: 14px auto 0;
    overflow: hidden;
}
.index_html .r_item .content .hzhb_box .links a {
    display: inline-block;
    float: left;
    width: 125px;
    height: 72px;
}
.index_html .r_item .content .hzhb_box .links a img:nth-child(2) {
    display: none;
}
.index_html .r_item .content .hzhb_box .links a:hover img:nth-child(1) {
    display: none;
}
.index_html .r_item .content .hzhb_box .links a:hover img:nth-child(2) {
    display: block;
}
.index_html .r_item .content .indrution {
    color: #b89d70;
    text-align: center;
    margin-bottom: 10px;
}
.index_html .r_item .content .links_box {
    overflow: hidden;
    padding: 20px 40px;
}
.index_html .r_item .content .links_box a {
    display: inline-block;
    float: left;
    width: 20%;
    color: #b26400;
    text-align: center;
    margin-top: 10px;
}
.index_html .r_item .content .info_box {
    color: #b26400;
    text-align: center;
}
.index_html .r_item .content .info_box a b {
    color: #b26400;
}
.index_html .r_item .content .info_box a b:hover {
    color: #ff0000;
}

.article_html .main_box .l_item {
    width: 632px;
}
.article_html .main_box .l_item .content {
    padding: 86px 54px 0;
    padding-bottom: 40px;
    background: url(../images/title_main_bg.gif) repeat-y center center;
}
.article_html .main_box .l_item .content:before {
    height: 46px;
    background: url(../images/title_top_bg.gif) no-repeat center center;
}
.article_html .main_box .l_item .content:after {
    height: 9px;
    background: url(../images/title_bot_bg.gif) no-repeat center center;
}
.article_html .main_box .l_item .content .content_title {
    width: 390px;
    height: 99px;
    margin: 20px auto 0;
    box-sizing: border-box;
    background: url(../images/content_title.gif) no-repeat center center;
}
.article_html .main_box .l_item .content .content_title .links {
    width: 298px;
    max-height: 38px;
    line-height: 19px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.article_html .main_box .l_item .content .content_title .links a {
    color: #b26400;
}
.article_html .main_box .l_item .content .content_title .links a:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -3px;
    background-color: #b89d70;
}
.article_html .main_box .l_item .content .content_title .links a:nth-child(2) {
    color: #0099CC;
}
.article_html .main_box .l_item .content h1 {
    width: 80%;
    margin: 20px auto 0;
    color: #f5d58f;
    text-align: center;
    font-size: 18px;
}
.article_html .main_box .l_item .content .info {
    width: 80%;
    margin: 15px auto 0;
    color: #b89d70;
    text-align: center;
}
.article_html .main_box .l_item .content .tips {
    margin-top: 10px;
    text-align: center;
}
.article_html .main_box .l_item .content .tips span {
    color: #b89d70;
}
.article_html .main_box .l_item .content .tips span:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -3px;
    background-color: #b89d70;
}
.article_html .main_box .l_item .content .tips span em {
    margin-right: 5px;
}
.article_html .main_box .l_item .content .tips span a {
    color: #b26400;
}
.article_html .main_box .l_item .content .content_text {
    padding: 0 10px;
    margin-top: 30px;
}
.article_html .main_box .l_item .content .content_text img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 10px auto 0;
}
.article_html .main_box .l_item .content .content_text h2, .article_html .main_box .l_item .content .content_text h3, .article_html .main_box .l_item .content .content_text h4, .article_html .main_box .l_item .content .content_text h5 {
    color: #5EA9F8;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}
.article_html .main_box .l_item .content .content_text h2 a, .article_html .main_box .l_item .content .content_text h3 a, .article_html .main_box .l_item .content .content_text h4 a, .article_html .main_box .l_item .content .content_text h5 a {
    color: blue;
    font-size: 14px;
    font-weight: 400;
}
.article_html .main_box .l_item .content .content_text a {
    text-decoration: underline;
}
.article_html .main_box .l_item .content .content_text p {
    font-size: 14px;
    color: #b89d70;
    line-height: 30px;
    margin-top: 15px;
    text-wrap: inherit !important;
}
.article_html .main_box .l_item .content .content_text p a {
    color: #b26400;
}
.article_html .main_box .l_item .content .content_text span {
    text-wrap: inherit !important;
}
.article_html .main_box .l_item .content .pages_box p {
    margin: 5px 0;
}
.article_html .main_box .l_item .content .pages_box p:nth-child(1) {
    margin-bottom: 15px;
}
.article_html .main_box .l_item .content .pages_box p::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -3px;
    margin-right: 10px;
    background-color: #b89d70;
}
.article_html .main_box .l_item .content .pages_box p em {
    color: #b89d70;
}
.article_html .main_box .l_item .content .pages_box p a {
    color: #b26400;
}
.article_html .main_box .l_item .content .copyright_box {
    margin-top: 10px;
}
.article_html .main_box .l_item .content .copyright_box p {
    color: #b89d70;
}
.article_html .main_box .l_item .content .copyright_box p font {
    color: #ff0000;
}
.article_html .main_box .l_item .content .copyright_box ul li {
    color: #b89d70;
}
.article_html .main_box .l_item .content .copyright_box ul li::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -3px;
    margin-right: 5px;
    background-color: #b89d70;
}
.article_html .main_box .l_item .content .copyright_box ul li a {
    color: #b26400;
}
.article_html .main_box .r_item {
    width: 360px;
}
.article_html .main_box .r_item .content {
    padding: 18px 37px 0;
    background: url(../images/title_main_r_bg.gif) repeat-y center center;
}
.article_html .main_box .r_item .content:before {
    height: 58px;
    background: url(../images/title_top_r_bg.gif) no-repeat center center;
}
.article_html .main_box .r_item .content:after {
    height: 30px;
    background: url(../images/title_bot_r_bg.gif) no-repeat center center;
}
.article_html .main_box .r_item .content .form_item_template {
    width: 285px;
    background: url(../images/main_search_bg2.jpg) no-repeat center center;
}
.article_html .main_box .r_item .content .form_item_template .input {
    width: 126px;
}
.article_html .main_box .r_item .content .form_item_template .button {
    right: 0;
}
.article_html .main_box .r_item .content .game_role_box {
    padding: 0 11px;
}
.article_html .main_box .r_item .content .game_role_box li {
    height: 54px;
    cursor: pointer;
    background: url(../images/role_icon.jpg) no-repeat;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(1) {
    background-position: 0 0;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(1):hover {
    background-position: 0 -273px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(2) {
    background-position: 0 -54px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(2):hover {
    background-position: 0 -327px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(3) {
    background-position: 0 -108px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(3):hover {
    background-position: 0 -381px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(4) {
    background-position: 0 -162px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(4):hover {
    background-position: 0 -435px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(5) {
    background-position: 0 -216px;
}
.article_html .main_box .r_item .content .game_role_box li:nth-child(5):hover {
    background-position: 0 -489px;
}
.article_html .main_box .r_item .content .links_box {
    padding: 0 10px 20px;
}
.article_html .main_box .r_item .content .links_box dt {
    color: #b89d70;
    padding: 10px 0;
}
.article_html .main_box .r_item .content .links_box dd {
    color: #b89d70;
    padding: 0 8px;
}
.article_html .main_box .r_item .content .links_box dd a {
    color: #b26400;
    display: inline-block;
    margin-bottom: 6px;
}
.article_html .main_box .r_item .content .img_text_item {
    padding: 0 14px;
}
.article_html .main_box .r_item .content .img_text_item li {
    width: 120px;
    margin-right: 18px;
}
.article_html .main_box .r_item .content .img_text_item li:nth-child(2n) {
    margin-right: 0;
}
.article_html .main_box .r_item .content .img_text_item li a .img_item {
    width: 120px;
    height: 68px;
}
.article_html .main_box .r_item .content .list_text_bg_template dl dt a {
    color: #b89d70;
    text-indent: 10px;
}

.download_common_html .main_box .l_item {
    width: 742px;
}
.download_common_html .main_box .l_item .content {
    padding: 64px 54px 20px;
    background: url(../images/download_main_bg.gif) repeat-y center center;
}
.download_common_html .main_box .l_item .content:before {
    height: 34px;
    background: url(../images/download_top_bg.gif) no-repeat center center;
}
.download_common_html .main_box .l_item .content:after {
    height: 9px;
    background: url(../images/download_bot_bg.gif) no-repeat center center;
}
.download_common_html .main_box .l_item .content .content_title {
    width: 390px;
    height: 99px;
    margin: 20px auto 0;
    box-sizing: border-box;
    background: url(../images/content_title.gif) no-repeat center center;
}
.download_common_html .main_box .l_item .content .content_title .links {
    width: 298px;
    max-height: 38px;
    line-height: 19px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.download_common_html .main_box .l_item .content .content_title .links a {
    color: #b26400;
}
.download_common_html .main_box .l_item .content .content_title .links a:nth-child(2) {
    color: #0099CC;
}
.download_common_html .main_box .l_item .content .content_box {
    margin: 15px 0 8px;
    overflow: hidden;
    color: #b89d70;
}
.download_common_html .main_box .l_item .content .content_box p {
    color: #b89d70;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
}
.download_common_html .main_box .l_item .content .content_box span {
    text-wrap: initial !important;
}
.download_common_html .main_box .l_item .content .content_box h2, .download_common_html .main_box .l_item .content .content_box h3, .download_common_html .main_box .l_item .content .content_box h4, .download_common_html .main_box .l_item .content .content_box h5, .download_common_html .main_box .l_item .content .content_box h6 {
    color: #b89d70;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}
.download_common_html .main_box .l_item .content .content_box img {
    max-width: 60% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 10px auto 0;
}
.download_common_html .main_box .l_item .content .register_img_template {
    margin-top: 10px;
}
.download_common_html .main_box .l_item .content .table_list {
    margin-top: 15px;
    width: 634px;
}
.download_common_html .main_box .l_item .content .table_list dt {
    height: 24px;
    border: 1px solid #b89d70;
    background-color: #990000;
    overflow: hidden;
}
.download_common_html .main_box .l_item .content .table_list dt span {
    position: relative;
}
.download_common_html .main_box .l_item .content .table_list dt span:not(:last-child):before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 24px;
    background-color: #b89d70;
}
.download_common_html .main_box .l_item .content .table_list dd {
    overflow: hidden;
    padding-top: 20px;
}
.download_common_html .main_box .l_item .content .table_list dd .name {
    text-align: left;
}
.download_common_html .main_box .l_item .content .table_list dd .name a {
    color: #b26400;
}
.download_common_html .main_box .l_item .content .table_list dd .total {
    color: #009900;
    font-weight: bold;
}
.download_common_html .main_box .l_item .content .table_list span {
    display: inline-block;
    float: left;
    color: #b89d70;
    height: 26px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}
.download_common_html .main_box .l_item .content .table_list .name {
    width: 300px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.download_common_html .main_box .l_item .content .table_list .time {
    width: 150px;
}
.download_common_html .main_box .l_item .content .table_list .size {
    width: 100px;
}
.download_common_html .main_box .l_item .content .table_list .total {
    width: 80px;
}
.download_common_html .main_box .r_item {
    width: 250px;
}
.download_common_html .main_box .r_item .content {
    padding: 18px 0 0;
    background: url(../images/download_main_r_bg.gif) repeat-y center center;
}
.download_common_html .main_box .r_item .content:before {
    height: 36px;
    z-index: 0;
    background: url(../images/download_top_r_bg.gif) no-repeat center center;
}
.download_common_html .main_box .r_item .content:after {
    height: 21px;
    background: url(../images/download_bot_r_bg.gif) no-repeat center center;
}
.download_common_html .main_box .r_item .content .copyright_box {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 190px;
    margin: 0 auto;
}
.download_common_html .main_box .r_item .content .copyright_box p {
    color: #b89d70;
}
.download_common_html .main_box .r_item .content .copyright_box p font {
    color: #ff0000;
}
.download_common_html .main_box .r_item .content .copyright_box .download {
    overflow: hidden;
}
.download_common_html .main_box .r_item .content .copyright_box .download a {
    float: left;
    margin-left: 10px;
    display: inline-block;
}
.download_common_html .main_box .r_item .content .copyright_box .img_item {
    display: inline-block;
    width: 180px;
    height: 90px;
    overflow: hidden;
}
.download_common_html .main_box .r_item .content .copyright_box .link a {
    color: #0099CC;
}
.download_common_html .main_box .r_item .content .links_box {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    padding: 0 37px;
}
.download_common_html .main_box .r_item .content .links_box.bg dd a {
    display: inline-block;
    padding: 2px 4px;
    margin-bottom: 5px;
    background-color: #361108;
}
.download_common_html .main_box .r_item .content .links_box dt {
    color: #b89d70;
    line-height: 20px;
    padding: 4px 0;
}
.download_common_html .main_box .r_item .content .links_box dt:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 2px;
    position: relative;
    top: 4px;
    background: url(../images/router_icon.gif) no-repeat center center;
}
.download_common_html .main_box .r_item .content .links_box dd {
    color: #b89d70;
}
.download_common_html .main_box .r_item .content .links_box dd a {
    color: #b26400;
    font-weight: 400;
}
.download_common_html .main_box .r_item .content .history_box {
    width: 194px;
    height: 412px;
    margin: 0 auto;
    padding-top: 60px;
    background: url(../images/history_bg.jpg) no-repeat center center;
}
.download_common_html .main_box .r_item .content .history_box a {
    display: block;
    width: 145px;
    height: 69px;
    margin: 5px auto 0;
}
.download_common_html .main_box .r_item .content .history_box a img:nth-child(2) {
    display: none;
}
.download_common_html .main_box .r_item .content .history_box a:hover img:nth-child(1) {
    display: none;
}
.download_common_html .main_box .r_item .content .history_box a:hover img:nth-child(2) {
    display: block;
}

.download1_html .main_box .l_item .content .content_title {
    background: none;
}
.download1_html .main_box .l_item .content .content_title .links a:nth-child(2) {
    color: #b26400;
}
.download1_html .main_box .l_item .content .table_theme {
    overflow: hidden;
    height: 214px;
    margin-top: 10px;
    border: 1px solid #b89d70;
}
.download1_html .main_box .l_item .content .table_theme .fl {
    width: 214px;
    height: 100%;
    border-right: 1px solid #b89d70;
}
.download1_html .main_box .l_item .content .table_theme .fl .img_item {
    display: inline-block;
    width: 208px;
    height: 208px;
    margin-left: 3px;
    margin-top: 3px;
    overflow: hidden;
    border-radius: 3px;
}
.download1_html .main_box .l_item .content .table_theme .fr {
    width: 417px;
}
.download1_html .main_box .l_item .content .table_theme .fr li {
    height: 42px;
    color: #b89d70;
    line-height: 40px;
    padding-left: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.download1_html .main_box .l_item .content .table_theme .fr li:not(:last-child) {
    border-bottom: 1px solid #b89d70;
}
.download1_html .main_box .l_item .content .table_theme .fr li a {
    color: #b26400;
}
.download1_html .main_box .l_item .content .table_theme .fr li em {
    color: #b89d70;
    margin-right: 10px;
}
.download1_html .main_box .l_item .content .table_theme .fr li font {
    margin-right: 5px;
}
.download1_html .main_box .l_item .content .download_group {
    margin-top: 6px;
}
.download1_html .main_box .l_item .content .download_group a {
    display: inline-block;
    width: 150px;
    height: 30px;
    margin-right: 20px;
}
.download1_html .main_box .l_item .content .download_group a.type1 {
    background: url(../images/download1.gif) no-repeat center center;
}
.download1_html .main_box .l_item .content .download_group a.type2 {
    background: url(../images/download2.gif) no-repeat center center;
}
.download1_html .main_box .l_item .content .title_circle {
    margin-top: 10px;
}
.download1_html .main_box .l_item .content .title_circle p {
    color: #b89d70;
}
.download1_html .main_box .l_item .content .title_circle p font {
    color: #DA9C3B;
}
.download1_html .main_box .l_item .content .title_circle ul {
    padding-bottom: 5px;
}
.download1_html .main_box .l_item .content .title_circle ul.fz12 {
    padding-top: 12px;
}
.download1_html .main_box .l_item .content .title_circle ul.fz12 li {
    margin-top: 0;
    font-size: 12px;
}
.download1_html .main_box .l_item .content .title_circle ul li {
    color: #b89d70;
    margin-top: 12px;
    font-size: 14px;
}
.download1_html .main_box .l_item .content .title_circle ul li a {
    color: #DA9C3B;
}
.download1_html .main_box .l_item .content .title_circle ul li a font {
    font-weight: 500;
}
.download1_html .main_box .l_item .content .register_img_template {
    margin-left: 0;
}

.column_html .main_box .l_item .content .title_content_box {
    height: 158px;
    width: 634px;
    margin-top: 15px;
    border-radius: 3px;
    background: #000 url(../images/column_title.png) no-repeat right 0;
}
.column_html .main_box .l_item .content .title_content_box .title_item {
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
}
.column_html .main_box .l_item .content .title_content_box .title_item:after {
    content: "";
    position: absolute;
    width: 400px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, rgba(238, 238, 238, 0.2), transparent, rgba(238, 238, 238, 0.2), transparent, rgba(238, 238, 238, 0.2), transparent, rgba(238, 238, 238, 0.2), transparent);
}
.column_html .main_box .l_item .content .title_content_box ul {
    height: 118px;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}
.column_html .main_box .l_item .content .title_content_box ul li {
    float: left;
    width: 33.3%;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.column_html .main_box .l_item .content .title_content_box ul li a {
    color: #b89d70;
    position: relative;
}
.column_html .main_box .l_item .content .title_content_box ul li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    background: url(../images/column_li_icon.gif) no-repeat right 0;
}
.column_html .main_box .l_item .content .column_box {
    margin-top: 10px;
}
.column_html .main_box .l_item .content .column_box li {
    background: url(../images/column_li_bot.gif) repeat-x;
}
.column_html .main_box .l_item .content .column_box li a {
    display: block;
    padding: 20px 0;
    overflow: hidden;
}
.column_html .main_box .l_item .content .column_box li a .img_item {
    float: left;
    width: 204px;
    height: 104px;
    border-radius: 3px;
    border: 1px solid #b89d70;
    overflow: hidden;
}
.column_html .main_box .l_item .content .column_box li a .content_item {
    float: left;
    width: 400px;
    margin-left: 25px;
}
.column_html .main_box .l_item .content .column_box li a .content_item h2 {
    color: #f3e6d0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.column_html .main_box .l_item .content .column_box li a .content_item p {
    padding-top: 10px;
    line-height: 22px;
    text-align: justify;
    font-size: 12px;
    color: #a99877;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.column_html .main_box .l_item .content .column_box li a .content_item .info {
    padding-top: 10px;
}
.column_html .main_box .l_item .content .column_box li a .content_item .info .time {
    color: #999;
}

.tips_html .main_box .w992_box {
    padding: 30px 54px 20px;
    background: url(../images/download_main_bg.gif) repeat center center;
    background-size: 96%;
}
.tips_html .main_box .w992_box:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 36px;
    z-index: 0;
    background: url(../images/download_top_bg.gif) no-repeat center center;
    background-size: cover;
}
.tips_html .main_box .w992_box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 21px;
    background: url(../images/download_bot_bg.gif) no-repeat center center;
}
.tips_html .main_box .w992_box h1 {
    width: 80%;
    margin: 30px auto 0;
    color: #f5d58f;
    text-align: center;
    font-size: 18px;
}
.tips_html .main_box .w992_box .info {
    width: 80%;
    margin: 15px auto 0;
    color: #b89d70;
    text-align: center;
}
.tips_html .main_box .w992_box .tips {
    margin-top: 10px;
    text-align: center;
}
.tips_html .main_box .w992_box .tips span {
    color: #b89d70;
}
.tips_html .main_box .w992_box .tips span:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -3px;
    background-color: #b89d70;
}
.tips_html .main_box .w992_box .tips span em {
    margin-right: 5px;
}
.tips_html .main_box .w992_box .tips span a {
    color: #b26400;
}
.tips_html .main_box .w992_box .tips_cate_box {
    display: grid;
    gap: 10px;
    margin: 35px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tips_html .main_box .w992_box .tips_cate_box li {
    padding: 15px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #b89d70;
}
.tips_html .main_box .w992_box .tips_cate_box li a {
    display: block;
}
.tips_html .main_box .w992_box .tips_cate_box li a .img_item {
    display: block;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
.tips_html .main_box .w992_box .tips_cate_box li a .img_item.full {
    width: 100%;
    height: 145px;
}

.tips_html .main_box .w992_box .tips_cate_box li a .content_box {
    margin: 15px 0;
}
.tips_html .main_box .w992_box .tips_cate_box li a .content_box h2 {
    font-size: 16px;
    color: #b26400;
}
.tips_html .main_box .w992_box .tips_cate_box li a .content_box div {
    font-size: 14px;
    color: #b26400;
    margin-top: 5px;
}
.tips_html .main_box .w992_box .tips_cate_box li a .desc {
    font-size: 12px;
    color: #b89d70;
}

.insert_template {
    margin: 15px 0;
}

.insert_template .content {
    text-indent: 0 !important;
}

.insert_template .list, .insert_template .title {
    font-size: 14px;
    line-height: 28px;
    color: #333;
    margin-top: 10px;
}

.insert_template .title {
    color: #FF0013;
}

.insert_template .content {
    background-color: #F3F3F3;
    padding: 20px !important;
    margin-top: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 55px;
}

.insert_template .content:before {
    display: none;
}

.insert_template .content .content_info {
    overflow: hidden;
    flex: 1;
    padding: 0 !important;
}

.insert_template .content .content_info img {
    display: inline-block;
    width: 68px !important;
    height: 68px !important;
    border-radius: 15px !important;
    float: left;
    margin: 0 10px 0 0 !important;
}

.insert_template .content .content_info h2 {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin: 0 !important;
}

.insert_template .content .content_info .info_text {
    font-size: 15px;
    line-height: 20px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 10px;
}

.insert_template .content .content_info .info_text span {
    color: #FC3E35;
    display: contents;
}

.insert_template .content .content_info .cate span em {
    font-style: inherit;
}

.insert_template .content .btn_info {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex: none;
}

.insert_template .content .btn_info a {
    display: inline-block;
    font-size: 14px;
    padding: 0 15px;
    min-width: 100px;
    height: 36px;
    line-height: 36px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: #43ab04;
    border-radius: 8px;
    font-weight: 400;
}

.insert_template.two .content {
    border: 1px solid #ffd9a8;
    background-color: #fffcf9;
}

.insert_template.tp1 .content .btn_info a.r {
    background-color: #379be9;
}

.insert_template.tp2 .content .btn_info a.r {
    background-color: #333;
}

.insert_template.tp3 .content .content_info img {
    display: inline-block;
    width: 85px !important;
    height: 85px !important;
    border-radius: 15px !important;
    float: left;
    margin: 0 10px 0 0;
}

.insert_template .content .content_info .info_text span {
    color: #FC3E35;
}

/* block page */
.insert_template.block_page .content .content_info h2 {
    color: #fff;
}

.insert_template.block_page .content .content_info .info_text {
    color: #eee;
}

/* small page */
.insert_template.small .content {
    flex-direction: column;
    gap: 0;
}

.insert_template.small .content .btn_info {
    justify-content: start;
}

@media screen and (max-width: 1000px) {
    .header_box .w10_box .link_item, .header_box .w10_box .menu_navigation {
        display: none;
    }
    .top_main_box .w10_box {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .insert_template {
        margin: 0.3rem 0;
    }
    .insert_template .list, .insert_template .title {
        font-size: 0.28rem;
        line-height: 0.56rem;
        color: #333;
        margin-top: 0.2rem;
    }
    .insert_template .title {
        color: #FF0013;
    }
    .insert_template .content {
        background-color: #F3F3F3;
        padding: 0.26rem 0.4rem;
        margin-top: 0.3rem;
        margin-bottom: 0.4rem;
        box-sizing: border-box;
    }
    .insert_template .content .content_info {
        overflow: hidden;
    }
    .insert_template .content .content_info img {
        display: inline-block;
        width: 1.6rem !important;
        height: 1.6rem !important;
        border-radius: 0.3rem !important;
        float: left;
        margin: 0 0.3rem 0 0;
    }
    .insert_template .content .content_info h2 {
        color: #000;
        font-size: 0.28rem;
        font-weight: 500;
        margin: 0;
    }
    .insert_template .content .content_info .cate {
        overflow: hidden;
    }
    .insert_template .content .content_info .cate span {
        display: inline-block;
        font-size: 0.28rem;
        width: 50%;
        float: left;
        color: #999;
        margin-top: 0.16rem;
    }
    .insert_template .content .content_info .info_text {
        font-size: 0.28rem;
        line-height: 0.4rem;
        color: #666;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        margin-top: 0.1rem;
    }
    .insert_template .content .content_info .info_text span {
        color: #FC3E35;
        display: contents;
    }
    .insert_template .content .content_info .cate span em {
        font-style: inherit;
    }
    .insert_template .content .btn_info {
        margin-top: 0.4rem;
        display: flex;
        justify-content: space-between;
    }
    .insert_template .content .btn_info a {
        display: inline-block;
        font-size: 0.28rem;
        width: 45%;
        height: 0.72rem;
        line-height: 0.72rem;
        text-decoration: none;
        text-align: center;
        color: #fff;
        background-color: #43ab04;
        border-radius: 0.16rem;
        font-weight: 400;
    }
    .insert_template .content .btn_info a.r {
        float: right;
        background-color: #379be9;
    }
    .insert_template.two .content {
        border: 1px solid #ffd9a8;
        background-color: #fffcf9;
    }
    .insert_template.two .content .btn_info a {
        background-color: #43ab04;
    }
    .insert_template.two .content .btn_info a.r {
        background-color: #333;
    }
    .insert_template.tp3 .content {
        padding: 0.24rem;
        box-sizing: border-box;
        border: 1px dashed #CCCCCC;
        background-color: transparent;
    }
    .insert_template.tp3 .content .info_text span {
        color: #FC3E35;
    }
    .insert_template.tp3 .content .btn_info {
        justify-content: start;
        margin-top: 0.2rem;
    }
    .insert_template.tp3 .content .btn_info img {
        display: inline-block;
        width: 0.6rem !important;
        height: 0.6rem !important;
        border-radius: 0.1rem !important;
        float: left;
        margin: 0 0.2rem 0 0;
    }
    .insert_template.tp3 .content .btn_info a {
        font-size: 0.28rem;
        line-height: 30px;
        height: auto;
    }
    .insert_template.tp3 .content .btn_info a.none {
        float: left;
        width: auto;
        color: blue;
        text-decoration: underline;
        font-weight: bold;
        background-color: transparent;
    }
    .insert_template.tp4 {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        margin: 0;
        background-color: #F3F3F3;
    }
    .insert_template.tp4 .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin: 0;
    }
    .insert_template.tp4 .content img {
        width: 1.3rem !important;
        height: 1.3rem !important;
    }
    .insert_template.tp4 .content h2 {
        color: blue;
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .insert_template.tp4 .content .info_text {
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: #FC3E35;
    }
    .insert_template.tp4 .content .btn_info {
        flex: none;
        margin-top: 0;
    }
    .insert_template.tp4 .content .btn_info a {
        width: auto;
        padding: 0 0.16rem;
        background-color: #FC3E35;
    }
    .w10_box {
        width: 100%;
        padding: 0 0.2rem;
    }
    .w992_box {
        width: 100%;
    }
    body {
        font-size: 0.28rem;
    }
    .top_main_box {
        position: relative;
        background: #000 url(../images/main_m.png) no-repeat center center;
        background-size: 100%;
    }
    .top_main_box .w10_box {
        /* 按钮图标 */
        /* 遮罩 */
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_btn {
        right: 220px;
        background: transparent;
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_btn span:first-child {
        transform: rotate(-43deg);
        -webkit-transform: rotate(-43deg);
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_btn span:nth-child(2) {
        transform: translateX(80px);
        -webkit-transform: translateX(80px);
        opacity: 0;
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_btn span:first-child {
        transform: rotate(-43deg);
        -webkit-transform: rotate(-43deg);
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_btn span:last-child {
        transform: rotate(43deg);
        -webkit-transform: rotate(43deg);
    }
    .top_main_box .w10_box.collapse_active .mobile_menu_mask {
        display: block;
        height: 100%;
    }
    .top_main_box .w10_box.collapse_active .m_menu {
        right: 0;
    }
    .top_main_box .w10_box .mobile_menu_btn {
        display: block;
        position: absolute;
        right: 10px;
        top: -35px;
        width: 40px;
        padding-top: 3px;
        background-color: #000;
        text-align: center;
        cursor: pointer;
        z-index: 100;
        transition: 0.4s all;
        -webkit-transition: 0.4s all;
    }
    .top_main_box .w10_box .mobile_menu_btn span {
        display: block;
        width: 32px;
        height: 2px;
        background: #fff;
        margin: 0 auto 9px;
        transition: 0.3s all;
        -webkit-transition: 0.3s all;
        /* 设定中心 */
    }
    .top_main_box .w10_box .mobile_menu_btn span:first-child, .top_main_box .w10_box .mobile_menu_btn span:last-child {
        transform-origin: 100% 50%;
        -webkit-transform-origin: 100% 50%;
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    .top_main_box .w10_box .mobile_menu_mask {
        width: 100%;
        height: 0;
        position: fixed;
        z-index: 98;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.5);
        transition: 0.3s all;
        -webkit-transition: 0.3s all;
    }
    .top_main_box .w10_box .m_menu {
        width: 200px;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        height: 100%;
        overflow: auto;
        top: 0;
        right: -200px;
        left: auto;
        z-index: 99;
        transition: 0.6s all;
        -webkit-transition: 0.6s all;
    }
    .top_main_box .w10_box .m_menu .menu {
        float: inherit;
        text-align: center;
    }
    .top_main_box .w10_box .m_menu .menu a {
        box-sizing: border-box;
        position: relative;
        opacity: 0.9;
        margin-right: 0;
        line-height: 46px;
        color: #b26400;
        display: block;
        border-bottom: solid 1px #333;
    }
    .top_main_box .w10_box .m_menu .menu a:nth-child(n+7) {
        display: none;
    }
    .top_main_box .w10_box .m_menu .fr {
        display: none;
    }
    .top_main_box .w10_box .pc_menu {
        left: 0.3rem;
        right: 0.3rem;
        background-color: #000;
    }
    .top_main_box .w10_box .pc_menu .fl {
        float: inherit;
        text-align: center;
    }
    .top_main_box .w10_box .pc_menu .fl a {
        display: inline-block;
    }
    .top_main_box .w10_box .pc_menu .fl a:nth-child(n+7) {
        display: none;
    }
    .top_main_box .w10_box .pc_menu .fr {
        display: none;
    }
    .router_template {
        font-size: 12px;
    }
    .footer_box {
        height: auto;
        padding-top: 0.4rem;
        background-size: cover;
    }
    .footer_box .w10_box {
        padding-top: 0;
    }
    .footer_box .w10_box .right_item {
        float: inherit;
        width: 86px;
        margin: 0 auto;
    }
    .footer_box .w10_box .right_item .img_item {
        margin-left: 0;
    }
    .footer_box .w10_box .left_item {
        float: inherit;
        width: 100%;
        padding: 0.3rem 0 0.5rem;
    }
    .footer_box .w10_box .left_item p {
        text-align: center;
        margin-top: 0.2rem;
        font-size: 0.24rem;
    }
    .index_html .main_box .l_item {
        width: 100%;
        margin-top: 0;
    }
    .index_html .main_box .l_item .template2_box .content {
        background: none;
        padding: 0;
    }
    .index_html .main_box .l_item .template2_box .content .slides_box {
        width: 100%;
    }
    .index_html .main_box .l_item .template2_box .content .slides_box .slider_small_img a {
        width: 25%;
    }
    .index_html .main_box .l_item .template2_box .content .slides_box .slider_small_img a .img_item {
        width: 100%;
    }
    .index_html .main_box .l_item .template2_box .content .new_download {
        display: none;
    }
    .index_html .main_box .l_item .template2_box .content .new_download dd ul li a {
        width: 70%;
    }
    .index_html .main_box .l_item .template2_box .content .text_list_box {
        display: none;
    }
    .index_html .main_box .l_item .template2_box .content .text_list_box li a {
        width: 100%;
    }
    .index_html .main_box .l_item .switch_content_box {
        display: block;
        margin-top: 0.2rem;
    }
    .index_html .main_box .l_item .switch_content_box dt {
        overflow: hidden;
        margin-bottom: 0.3rem;
    }
    .index_html .main_box .l_item .switch_content_box dt span {
        float: left;
        display: inline-block;
        width: 33.33%;
        font-size: 0.32rem;
        font-weight: 400;
        box-sizing: border-box;
        color: #b26400;
        text-align: center;
    }
    .index_html .main_box .l_item .switch_content_box dt span.active {
        color: #ff0000;
        font-weight: bold;
    }
    .index_html .main_box .l_item .switch_content_box dd ul {
        display: none;
    }
    .index_html .main_box .l_item .switch_content_box dd ul.active {
        display: block;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li {
        height: 0.36rem;
        line-height: 0.36rem;
        margin-top: 0.3rem;
        overflow: hidden;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li:nth-child(1) {
        margin-top: 0;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li:nth-child(n+11) {
        display: none;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li a {
        font-weight: 400;
        color: #b26400;
        position: relative;
        font-size: 14px;
        display: inline-block;
        width: 70%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li a:hover {
        color: #ff0000;
    }
    .index_html .main_box .l_item .switch_content_box dd ul li .time {
        float: right;
        color: #666;
        font-weight: 400;
        font-size: 0.28rem;
    }
    .index_html .main_box .r_item {
        width: 100%;
        margin-bottom: 0.6rem;
    }
    .index_html .main_box .r_item:before, .index_html .main_box .r_item:after {
        display: none;
    }
    .index_html .main_box .r_item .jiao {
        display: none;
    }
    .index_html .main_box .r_item .content {
        padding-top: 0.4rem;
        background: none;
    }
    .index_html .main_box .r_item .content .h1_box {
        display: none;
    }
    .index_html .main_box .r_item .content .text_list_box {
        display: none;
    }
    .index_html .main_box .r_item .content .template_img_box {
        width: 100%;
        margin-bottom: 0.2rem;
    }
    .index_html .main_box .r_item .content .rmxz_box {
        width: 100%;
    }
    .index_html .main_box .r_item .content .rmxz_box .left_item {
        float: inherit;
        width: 100%;
    }
    .index_html .main_box .r_item .content .rmxz_box .left_item .link a {
        font-size: 0.28rem;
    }
    .index_html .main_box .r_item .content .rmxz_box .left_item .download dl {
        width: 50%;
    }
    .index_html .main_box .r_item .content .rmxz_box .left_item .download dl dd {
        box-sizing: border-box;
        padding-right: 0.2rem;
    }
    .index_html .main_box .r_item .content .rmxz_box .left_item .download dl dd a {
        font-size: 0.28rem;
        height: 0.36rem;
        line-height: 0.36rem;
        margin-top: 0.28rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .index_html .main_box .r_item .content .rmxz_box .right_item {
        float: inherit;
        margin: 0 auto;
        display: none;
    }
    .index_html .main_box .r_item .content .yxsp_box, .index_html .main_box .r_item .content .photo_box {
        width: 100%;
    }
    .index_html .main_box .r_item .content .yxsp_box a, .index_html .main_box .r_item .content .photo_box a {
        width: 50%;
    }
    .index_html .main_box .r_item .content .yxsp_box a:nth-child(n+5), .index_html .main_box .r_item .content .photo_box a:nth-child(n+5) {
        display: none;
    }
    .index_html .main_box .r_item .content .yxsp_box a p, .index_html .main_box .r_item .content .photo_box a p {
        font-size: 0.28rem;
    }
    .index_html .main_box .r_item .content .hzhb_box {
        width: 100%;
    }
    .index_html .main_box .r_item .content .hzhb_box .links {
        width: 95%;
    }
    .index_html .main_box .r_item .content .hzhb_box .links a {
        width: 25%;
        padding: 0 1%;
        box-sizing: border-box;
    }
    .index_html .main_box .r_item .content .hzhb_box .links a img {
        object-fit: initial;
    }
    .index_html .main_box .r_item .content .indrution {
        font-size: 0.28rem;
        margin-top: 0.2rem;
    }
    .index_html .main_box .r_item .content .links_box {
        font-size: 0.28rem;
        padding: 0 0.2rem 0.4rem;
    }
    .index_html .main_box .r_item .content .links_box a {
        width: auto;
        margin-right: 0.2rem;
    }
    .index_html .main_box .r_item .content .info_box {
        padding: 0 0.2rem;
        font-size: 0.28rem;
    }
    .column_html .top_main_box .w10_box .pc_menu,
    .article_html .top_main_box .w10_box .pc_menu,
    .download_html .top_main_box .w10_box .pc_menu,
    .download1_html .top_main_box .w10_box .pc_menu {
        display: none;
    }
    .column_html .main_box,
    .article_html .main_box,
    .download_html .main_box,
    .download1_html .main_box {
        padding-top: 0;
    }
    .column_html .main_box .w992_box,
    .article_html .main_box .w992_box,
    .download_html .main_box .w992_box,
    .download1_html .main_box .w992_box {
        width: 100%;
    }
    .column_html .main_box .w992_box .l_item,
    .article_html .main_box .w992_box .l_item,
    .download_html .main_box .w992_box .l_item,
    .download1_html .main_box .w992_box .l_item {
        width: 100%;
    }
    .column_html .main_box .w992_box .l_item .content,
    .article_html .main_box .w992_box .l_item .content,
    .download_html .main_box .w992_box .l_item .content,
    .download1_html .main_box .w992_box .l_item .content {
        padding: 0 0.2rem;
        background: none;
    }
    .column_html .main_box .w992_box .l_item .content:before,
    .article_html .main_box .w992_box .l_item .content:before,
    .download_html .main_box .w992_box .l_item .content:before,
    .download1_html .main_box .w992_box .l_item .content:before {
        background: none;
        display: none;
    }
    .column_html .main_box .w992_box .l_item .content .router_template a,
    .article_html .main_box .w992_box .l_item .content .router_template a,
    .download_html .main_box .w992_box .l_item .content .router_template a,
    .download1_html .main_box .w992_box .l_item .content .router_template a {
        font-size: 0.28rem;
    }
    .column_html .main_box .w992_box .r_item,
    .article_html .main_box .w992_box .r_item,
    .download_html .main_box .w992_box .r_item,
    .download1_html .main_box .w992_box .r_item {
        display: none;
    }
    .column_html .main_box .w992_box .l_item .content .title_content_box {
        width: 100%;
        height: auto;
        background-size: cover !important;
    }
    .column_html .main_box .w992_box .l_item .content .title_content_box ul {
        height: 100%;
        padding-bottom: 0.2rem;
    }
    .column_html .main_box .w992_box .l_item .content .title_content_box ul li a {
        font-size: 0.28rem;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li:nth-child(n+21) {
        display: none;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a {
        padding: 0.2rem 0;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a .img_item {
        width: 30%;
        height: 1.48rem;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a .content_item {
        float: right;
        width: 65%;
        margin-left: 0;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a .content_item h2 {
        font-size: 0.32rem;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a .content_item p {
        line-height: 0.3rem;
        -webkit-line-clamp: 2;
        font-size: 0.24rem;
        padding-top: 0.1rem;
    }
    .column_html .main_box .w992_box .l_item .content .column_box li a .content_item .info {
        padding-top: 0;
        position: relative;
        top: 0.06rem;
    }
    .column_html .main_box .w992_box .l_item .content .page_box_template {
        padding: 0.4rem 0;
    }
    .column_html .main_box .w992_box .l_item .content .page_box_template a {
        font-size: 0.32rem;
        display: inline-block;
        padding: 0 0.1rem;
    }
    .article_html .main_box .w992_box .l_item .content {
        padding: 0 0.2rem 0.4rem;
    }
    .article_html .main_box .w992_box .l_item .content .content_title {
        width: 100%;
    }
    .article_html .main_box .w992_box .l_item .content .register_img_template {
        display: none;
    }
    .article_html .main_box .w992_box .l_item .content .content_text img {
        margin-top: 0.2rem;
    }
    .article_html .main_box .w992_box .l_item .content .content_text h2, .article_html .main_box .w992_box .l_item .content .content_text h3, .article_html .main_box .w992_box .l_item .content .content_text h4, .article_html .main_box .w992_box .l_item .content .content_text h5 {
        font-size: 0.32rem;
    }
    .article_html .main_box .w992_box .l_item .content .content_text p {
        font-size: 0.28rem;
    }
    .article_html .main_box .w992_box .l_item .content .pages_box {
        margin: 0.3rem 0;
    }
    .article_html .main_box .w992_box .l_item .content .copyright_box ul li {
        padding: 0.1rem 0;
    }
    .download_common_html .main_box .l_item .content .content_title {
        width: 100%;
    }
    .download_common_html .main_box .l_item .content .register_img_template {
        display: none;
    }
    .download_common_html .main_box .l_item .content .table_list {
        width: 100%;
    }
    .download_common_html .main_box .l_item .content .table_list dt {
        margin-bottom: 0.1rem;
        background-color: transparent;
    }
    .download_common_html .main_box .l_item .content .table_list dt .name {
        width: 70%;
        text-indent: 10px;
        text-align: left;
    }
    .download_common_html .main_box .l_item .content .table_list dt .time {
        width: 30%;
        text-align: right;
        box-sizing: border-box;
        padding-right: 10px;
    }
    .download_common_html .main_box .l_item .content .table_list dd {
        padding-top: 0.2rem;
    }
    .download_common_html .main_box .l_item .content .table_list dd:nth-child(n+22) {
        display: none;
    }
    .download_common_html .main_box .l_item .content .table_list dd .name {
        width: 70%;
    }
    .download_common_html .main_box .l_item .content .table_list dd .name a {
        font-size: 0.28rem;
    }
    .download_common_html .main_box .l_item .content .table_list dd .time {
        float: right;
        width: 90px;
        text-align: right;
    }
    .download_common_html .main_box .l_item .content .table_list dd .size, .download_common_html .main_box .l_item .content .table_list dd .total {
        display: none;
    }
    .download_common_html .main_box .l_item .content .page_box_template {
        padding: 0.4rem 0;
    }
    .download_common_html .main_box .l_item .content .page_box_template em, .download_common_html .main_box .l_item .content .page_box_template span {
        display: none;
    }
    .download_common_html .main_box .l_item .content .page_box_template a {
        font-size: 0.32rem;
        display: inline-block;
        padding: 0 0.1rem;
    }
    .download1_html .main_box .l_item .content {
        padding-bottom: 0.3rem !important;
    }
    .download1_html .main_box .l_item .content .content_title {
        width: 100%;
    }
    .download1_html .main_box .l_item .content .table_theme {
        height: auto;
    }
    .download1_html .main_box .l_item .content .table_theme .fl, .download1_html .main_box .l_item .content .table_theme .fr {
        width: 100%;
        text-align: center;
    }
    .download1_html .main_box .l_item .content .register_img_template {
        display: none;
    }
    .tips_html .main_box .w992_box .tips_cate_box {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/*# sourceMappingURL=index.css.map */
