html { background: #f5f7fa; }
body { min-width: 320px; font-size: 14px !important; background: #f5f7fa; color: #2c3e50; font-family: "Arial", "微软雅黑", "Helvetica", "sans-serif"; }
pre { font-family: "Arial", "微软雅黑"; }

a { transition: .3s ease; }

.slick-prev,
html.um .slick-prev { left: 0px !important; }
.slick-next,
html.um .slick-next { right: 0px !important; }

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.g_cw { width: 100%; }
.g_cw::after { content: ''; display: block; clear: both; }
.g_mt { margin-top: 70px; }
.g_mt::before { content: ''; display: block; clear: both; }
.g_mt::after { content: ''; display: block; clear: both; }
html.um .g_mt { margin-top: 30px; }
.g_mb { margin-bottom: 60px; }
.g_mb::before { content: ''; display: block; clear: both; }
.g_mb::after { content: ''; display: block; clear: both; }
html.um .g_mb { margin-bottom: 30px; }

.g_page > ul.list > li a { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.g_page > ul.list > li a:hover,
.g_page > ul.list > li a.on { background: linear-gradient(135deg, #8b5cf6, #ec4899); color: #fff; }
.g_page > ul.list > li.prev a,
.g_page > ul.list > li.next a { background: none; color: #999; padding: 0 25px; box-shadow: none; }
.g_page > ul.list > li.prev a:hover,
.g_page > ul.list > li.next a:hover { color: #8b5cf6; }

html.um .g_page > ul.list { display: inline-block; }
html.um .g_page > p.tip { display: block; }

html.um body { position: relative; min-width: 0; left: 0; transition: .3s ease; }
html.um.navon { position: relative; overflow: hidden; }
html.um.navon body { left: 70%; transition: .5s ease; }

html.um .g_cw { padding: 10px 10px; }


body { padding: 70px 0 0 0; }

.g_menu { display: none; }

.g_header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 70px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.g_header > table { display: none; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav .nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .nav > li {
    position: relative;
    list-style: none;
}

.header-nav .nav > li > a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #5a6c7d;
    border-radius: 8px;
    transition: color .3s ease, background .3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.header-nav .nav > li > a em {
    padding: 0;
    border-bottom: none;
}

.header-nav .nav > li > a::after {
    display: none;
}

.header-nav .nav > li:hover > a,
.header-nav .nav > li.on > a,
.header-nav .nav > li > a:hover {
    color: #8b5cf6;
    background: rgba(139,92,246,0.08);
}

.header-nav .nav > li.on > a {
    background: rgba(139,92,246,0.12);
}

.header-nav .nav > li .sub {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    min-width: 150px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.header-nav .nav > li:hover .sub {
    visibility: visible;
    opacity: 1;
}

.header-nav .nav > li .sub > li {
    display: block;
}

.header-nav .nav > li .sub > li a {
    display: block;
    padding: 12px 20px;
    color: #5a6c7d;
    font-size: 14px;
    transition: .2s ease;
}

.header-nav .nav > li .sub > li a:hover,
.header-nav .nav > li .sub > li.on a {
    color: #8b5cf6;
    background: rgba(139,92,246,0.06);
}

.header-nav .nav > li .sub > li:not(:first-child) a {
    border-top: 1px solid #f0f2f5;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-auth a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    transition: .3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.header-auth .auth-login {
    color: #5a6c7d;
    border: 1px solid #d0d7de;
    background: #fff;
}

.header-auth .auth-login:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
    background: rgba(139,92,246,0.04);
}

.header-auth .auth-reg {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: 1px solid transparent;
}

.header-auth .auth-reg:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}

.header-auth .auth-user {
    color: #5a6c7d;
    border: 1px solid #d0d7de;
    background: #fff;
}

.header-auth .auth-user:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
}


html.um .g_menu {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    right: 16px;
    top: 16px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

html.um .g_menu .l1,
html.um .g_menu .l2 {
    position: absolute;
    left: 9px;
    display: block;
    width: 20px;
    height: 2px;
    background: #8b5cf6;
    border-radius: 2px;
    transition: 0.3s ease;
}

html.um .g_menu .l1 { top: 12px; }
html.um .g_menu .l2 { top: 22px; }

html.um.navon .g_menu .l1 { top: 17px; transform: rotate(45deg); }
html.um.navon .g_menu .l2 { top: 17px; transform: rotate(-45deg); }


html.um .g_header {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    left: auto;
    width: 70%;
    max-width: 300px;
    height: auto;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 70px 0 30px;
    overflow-y: auto;
    transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
}

html.um.navon .g_header {
    right: 0;
}

html.um .header-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: none;
    padding: 0 16px;
    height: auto;
}

html.um .header-logo {
    padding: 0 8px 20px;
    border-bottom: 1px solid #e8ecef;
    margin-bottom: 16px;
}

html.um .header-nav {
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow-y: auto;
}

html.um .header-nav .nav > li > a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
}

html.um .header-nav .nav > li .sub {
    position: static;
    transform: none;
    margin-top: 0;
    min-width: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding-left: 16px;
    display: none;
}

html.um .header-nav .nav > li.on .sub {
    display: block;
}

html.um .header-nav .nav > li .sub > li a {
    padding: 11px 16px;
    font-size: 14px;
}

html.um .header-auth {
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px 0;
    border-top: 1px solid #e8ecef;
    margin-top: 16px;
}

html.um .header-auth a {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
}


.g_footer { clear: both; padding: 28px 0; text-align: center; font-size: 13px; color: #8899a6; background: #fff; border-top: 1px solid #e8ecef; margin-top: 60px; line-height: 2em; }
.g_footer span { display: inline-block; }
.g_footer a { color: #8b5cf6; transition: .3s ease; }
.g_footer a:hover { color: #7c3aed; }
html.um .g_footer span { display: block; margin: 0; }
html.um .g_footer { padding: 24px 16px; }


.g_tool > li > a { background: #fff; }
.g_tool > li > a:hover { background: linear-gradient(135deg, #8b5cf6, #ec4899); border: 1px solid transparent; color: #fff; }


.g_title { clear: both; text-align: center; margin-bottom: 40px; }
.g_title .t1 { font-size: 1.6em; font-weight: 600; margin-bottom: 8px; color: #2c3e50; }
.g_title .t2 { color: #8899a6; }
html.um .g_title { margin-bottom: 24px; }


.bannerhome { clear: both; }
.bannerhome .frames,
.bannerhome .frames a,
.bannerhome .frames div { display: block; height: 100%; }
.bannerhome .frames a { background-position: center top; background-repeat: no-repeat; background-size: auto 100%; }
.bannerhome .frames .txt { display: inline-block; width: 60%; float: right; }
.bannerhome .frames .txt .t1 { font-size: 40px; color: #8b5cf6; }
.bannerhome .frames .txt .t2 { margin-top: 20px; font-size: 18px; opacity: 0.6; }

html.um .bannerhome .frames .t1 { font-size: 25px; }
html.um .bannerhome .frames .t2 { font-size: 16px; }

.bannerhome.pc { display: block; }
.bannerhome.mobile { display: none; }
html.um .bannerhome.pc { display: none; }
html.um .bannerhome.mobile { display: block; }


.bannersingle { width: 100%; background-position: center top; background-repeat: no-repeat; background-size: auto 100%; overflow: hidden; position: relative; }
.bannersingle table.g_cw { height: 100%; }
.bannersingle .txt { width: 60%; padding: 30px 0; float: right; }
.bannersingle .txt .t1 { font-size: 25px; color: #8b5cf6; margin-bottom: 10px; }
.bannersingle .txt .t2 { font-size: 16px; }

.bannersingle.pc { display: block; }
.bannersingle.mobile { display: none; }
html.um .bannersingle.pc { display: none; }
html.um .bannersingle.mobile { display: block; }


.contacthome { clear: both; }
.contacthome .contact { float: left; width: 55%; }
.contacthome .contact td { width: 50%; padding: 5px 15px 5px 0; color: #8899a6; vertical-align: top; }
.contacthome .third { margin-bottom: 20px; }
.contacthome .third i.fa { display: inline-block; color: #8899a6; margin: 0 10px 0 0; font-size: 24px; padding: 10px; border-radius: 50%; }
.contacthome .third a:hover i.fa { background: linear-gradient(135deg, #8b5cf6, #ec4899); color: #fff; }
.contacthome .book { float: right; width: 45%; overflow: hidden; }
.contacthome .book table { width: 100%; }
.contacthome .book table td { padding: 10px 5px; white-space: nowrap; overflow: hidden; border-bottom: 1px solid #e8ecef; }
.contacthome .book table td input { width: 100%; border: 0; height: 30px; color: #5a6c7d; background: transparent;}
.contacthome .book table td textarea { border: 0; width: 100%; height: 80px; overflow: auto; color: #5a6c7d; background: transparent; }
.contacthome .book table .b td { border-bottom: 0; }
.contacthome .book table .btn { width: 80px; height: 35px; border: 1px solid #8b5cf6; background: transparent; color: #8b5cf6; font-weight: lighter; border-radius: 6px; transition: .3s ease; }
.contacthome .book:hover table .btn { background: linear-gradient(135deg, #8b5cf6, #ec4899); color: #fff; border: 0; }

html.um .contacthome .contact { float: none; width: 100%; margin-bottom: 30px; }
html.um .contacthome .contact td { display: block; width: auto; padding-right: 0; }
html.um .contacthome .third { text-align: center; }

html.um .contacthome .book { float: none; width: 100%; }

@media (max-width: 900px) {
    .contacthome .contact { float: none; width: 100%; margin-bottom: 30px; }
    .contacthome .contact td { display: block; width: auto; padding-right: 0; }
    .contacthome .third { text-align: center; }
    .contacthome .book { float: none; width: 100%; }
}

.newslist { clear: both; }
.newslist .offset { margin-left: -30px; margin-bottom: -30px; }
.newslist .offset .list { overflow: hidden; }
.newslist .offset .list > li { width: 33.33%; float: left; padding-left: 30px; margin-bottom: 30px; }
.newslist .offset .list > li:nth-child(3n+1) { clear: both; }
.newslist .offset .list > li a { position: relative; display: block; overflow: hidden; border-radius: 12px; }
.newslist .offset .list > li a .pic { text-align: center; font-size: 0; margin-bottom: 15px; }
.newslist .offset .list > li a .pic img { max-width: 100%; }
.newslist .offset .list > li a .time { position: absolute; display: inline-block; top: 20px; left: 20px; width: 55px; height: 55px; padding: 12px 0 0; background: linear-gradient(135deg, #8b5cf6, #ec4899); border-radius: 50px; color: #fff; text-align: center; font-family: Arial, sans-serif; transition: .3s ease; }
.newslist .offset .list > li a .time em { display: block; }
.newslist .offset .list > li a .title { margin-bottom: 16px; font-size: 16px; transition: .3s ease; color: #2c3e50; }
.newslist .offset .list > li a .out { color: #8899a6; clear: both; }

.newslist .offset .list > li a:hover .title { color: #8b5cf6; }
.newslist .offset .list > li a:hover .time { opacity: .3; }


@media (max-width: 1400px) {
    .newslist .offset .list > li { width: 50%; }
    .newslist .offset .list > li:nth-child(n) { clear: none; }
    .newslist .offset .list > li:nth-child(2n+1) { clear: both; }
}

@media (max-width: 900px) {
    .newslist .offset .list > li { width: 100%; clear: both; }
    .g_content{ padding:0 5px }
}

.newsdetail { clear: both; }
.newsdetail .title { font-size: 18px; text-align: center; margin-bottom: 10px; font-weight: bold; color: #2c3e50; }
.newsdetail .time { font-size: 16px; text-align: center; margin-bottom: 30px; color: #8899a6; }
.newsdetail .g_content { color: #5a6c7d; }


.tt1list { clear: both; }
.tt1list .offset .list { overflow: hidden; }
.tt1list .offset .list > li { width: 25%; float: left; }
.tt1list .offset .list > li:nth-child(4n+1) { clear: both; }
.tt1list .offset .list > li a { position: relative; display: block; overflow: hidden; border-radius: 10px; }
.tt1list .offset .list > li a .pic { text-align: center; font-size: 0; overflow: hidden; }
.tt1list .offset .list > li a .pic img { max-width: 100%; }
.tt1list .offset .list > li a .fbox { position: absolute; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,.5); transition: .3s ease; }
.tt1list .offset .list > li a:hover .fbox { background: rgba(139,92,246,0.8); }
.tt1list .offset .list > li a .fbox .title { padding: 20px; font-size: 16px; color: #fff; text-align: center; }
.tt1list .offset .list > li a .fbox .out { float: left; margin-bottom: -100%; padding: 0 20px 20px; color: #fff; transition: .5s ease; }
.tt1list .offset .list > li a:hover .fbox .out { margin-bottom: 0; }

@media (max-width: 1600px) {
    .tt1list .offset .list > li { width: 33.33%; }
    .tt1list .offset .list > li:nth-child(n) { clear: none; }
    .tt1list .offset .list > li:nth-child(3n+1) { clear: both; }
}

@media (max-width: 1200px) {
    .tt1list .offset .list > li { width: 50%; }
    .tt1list .offset .list > li:nth-child(n) { clear: none; }
    .tt1list .offset .list > li:nth-child(2n+1) { clear: both; }
}

@media (max-width: 800px) {
    .tt1list .offset .list > li { width: 100%; clear: both; }
}

.tt1detail { clear: both; }
.tt1detail .pictures { position: relative; z-index: 0; clear: both; margin-bottom: 30px; }
.tt1detail .pictures a { display: inline-block; float: none; text-align: center; font-size: 0; vertical-align: middle; }
.tt1detail .pictures a img { max-width: 100%; display: inline-block; }
.tt1detail .title { font-size: 18px; margin-bottom: 30px; font-weight: bold; color: #2c3e50; }
.tt1detail .g_content { color: #5a6c7d; }

html.um .tt1detail .pictures { margin: 0 -10px 30px; }


.tt2list { clear: both; }
.tt2list .offset { margin-left: -30px; margin-bottom: -30px; }
.tt2list .offset .list { overflow: hidden; }
.tt2list .offset .list > li { width: 25%; float: left; padding-left: 30px; margin-bottom: 30px; }
.tt2list .offset .list > li:nth-child(4n+1) { clear: both; }
.tt2list .offset .list > li a { position: relative; display: block; overflow: hidden; border-radius: 10px; }
.tt2list .offset .list > li a .pic { text-align: center; font-size: 0; margin-bottom: 10px; overflow: hidden; }
.tt2list .offset .list > li a .pic img { max-width: 100%; }
.tt2list .offset .list > li a .title { margin-bottom: 10px; font-size: 16px; transition: .3s ease; color: #2c3e50; }
.tt2list .offset .list > li a .out { color: #8899a6; transition: .3s ease; }
.tt2list .offset .list > li a:hover .title { color: #8b5cf6; }
.tt2list .offset .list > li a:hover .out { color: #8b5cf6; }

@media (max-width: 1600px) {
    .tt2list .offset .list > li { width: 33.33%; }
    .tt2list .offset .list > li:nth-child(n) { clear: none; }
    .tt2list .offset .list > li:nth-child(3n+1) { clear: both; }
}

@media (max-width: 1200px) {
    .tt2list .offset .list > li { width: 50%; }
    .tt2list .offset .list > li:nth-child(n) { clear: none; }
    .tt2list .offset .list > li:nth-child(2n+1) { clear: both; }
}

@media (max-width: 800px) {
    .tt2list .offset .list > li { width: 100%; clear: both; }
}


.tt2detail { clear: both; }
.tt2detail .title { font-size: 18px; text-align: center; margin-bottom: 30px; font-weight: bold; color: #2c3e50; }
.tt2detail .g_content { color: #5a6c7d; }


@media (max-width:767px) {
.link { 
    display: none;
}
}
.link{padding:0px 0px;text-align: center;}
.link span{color:#8899a6;font-size: 14px;display: inline-block;vertical-align: top;}
.link li  {color:#8899a6;font-size: 14px;display: inline-block;vertical-align: top;margin:0 10px;}
.link li a{color:#5a6c7d;font-size: 14px;}
.link li a:hover{color: #8b5cf6;}
.ab_img img{ max-width:100% !important; height:auto !important;display:inline-block;}
.ab_img p{text-wrap: inherit !important;}
.ab_img p span{text-wrap: inherit !important;}

.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #e8ecef;
  color: #5a6c7d;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 6px; line-height:100%; transition: .3s ease;
}
.pagination span {
    color: #8899a6;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 6px;
}
.pagination a:hover {
  color: #fff;
  border: 1px solid #8b5cf6;
  background: #8b5cf6;
}
.pagination a.page-num-current {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border: 1px solid transparent;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0; color: #8899a6; }
