com-tit

@charset "utf-8";
/* CSS Document */
body,
nav,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
ul,
ol,
li,
input,
button,
textarea,
footer {
    margin: 0;
    padding: 0;
}

html,
body {
    -webkit-text-size-adjust: none;
}

html {
    line-height: 1rem;
}

body {
    font-family: "PingFang-SC-Medium", "Microsoft YaHei";
    color: #333;
    background: #F2F2F2;
    -webkit-text-size-adjust: none;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
    margin: 0 auto;
    font-size: 0.1rem;
}

.dis {
    display: none;
}

em,
i {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

form {
    display: inline;
}

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

ul {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

a:hover,
a:active,
a:focus {
    color: #862F9D;
    text-decoration: none;
    cursor: pointer;
}

a:active {
    color: #aaa;
}

*:focus {
    outline: 0;
}

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

.clearfix {
    *zoom: 1;
}

.cf:after {
    clear: both;
}

.cf:after,
.cf:before {
    content: " ";
    display: table;
}

.clear {
    clear: both;
}

img {
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
    font-size: 100%;
    vertical-align: middle;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 点击高亮的颜色*/
    font-family: "微软雅黑";
}

p {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

button,
textarea,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="password"] {
    cursor: pointer;
    /*-webkit-appearance: button;
      -moz-appearance: button*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input::-webkit-input-placeholder { /* WebKit browsers */
    color: #A6A6A6;
}

input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #A6A6A6;
}

input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #A6A6A6;
}

input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #A6A6A6;
}

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

img,
object {
    max-width: 100%;
}

.head {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 24px 0;
    max-width: 1200px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
}

.head-logo {
    position: relative;
}

.logo {
    display: block;
    margin: 0 auto;
    height: 60px;
    transition: all .8s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo .tit {
    margin-left: 8px;
}

.logo .tit h2 {
    color: #333333;
    font-size: 22px;
    line-height: 24px;
    font-weight: bold;
}

.logo .tit p {
    color: #333333;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.head-link {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: flex-end;
}

.head-link li {
    color: #862F9D;
    margin: 0 0 0 20px;
    font-size: 14px;
    display: block;
    line-height: 24px;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
}

.head-link li:before {
    position: absolute;
    right: -10px;
    top: 25%;
    height: 50%;
    width: 1px;
    content: "";
    background: #862F9D;
}

.head-link li:last-child:before {
    display: none;
}

.head-pc .head-box {
    display: block !important;
}

.head-box {
    margin: 30px 0 0 0;
}

.head-box > ul {
    display: flex;
    justify-content: flex-end;
}

.head-box > ul > li {
    position: relative;
    margin-left: 10px;
}

.head-box > ul > li > a {
    line-height: 32px;
    display: block;
    padding: 0 20px;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    transition: all 0.8s;
}

.head-box > ul > li > a .icon {
    font-size: 12px;
    vertical-align: middle;
    display: inline-block;
    margin: -2px 0 0 8px;
    color: #666;
}

.head-box .child {
    position: absolute;
    top: 32px;
    left: 0;
    background: #6C2383;
    min-width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.8s;
}

.head-box .child li a {
    display: block;
    color: #fff;
    line-height: 32px;
    font-size: 12px;
    text-indent: 20px;
}

.head-box .child li a:hover {
    background: #862F9D;
}

.head-box > ul > li.on > a, .head-box > ul > li:hover > a {
    background: #862F9D;
    color: #fff;
}

.head-box > ul > li:hover > a .icon {
    color: #fff;
    transform: rotate(180deg);
}

.head-box > ul > li:hover .child {
    height: auto;
}

/*菜单*/
.hamburger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    right: -12px;
    top: 35px;
    display: none;
    transition: all .8s;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #666;
    stroke-width: 3;
    stroke-linecap: round;
}

.hamburger .top {
    stroke-dasharray: 40 130;
}

.hamburger .middle {
    stroke-dasharray: 40 140;
}

.hamburger .bottom {
    stroke-dasharray: 40 205;
}

.hamburger.active .top {
    stroke-dasharray: 75 130;
    stroke-dashoffset: -63px;
}

.hamburger.active .middle {
    stroke-dashoffset: -102px;
}

.hamburger.active .bottom {
    stroke-dasharray: 110 205;
    stroke-dashoffset: -86px;
}

.head-fix {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
    background: #fff;
    width: 100%;
    padding: 5px 2.5%;
    box-sizing: border-box;
    max-width: inherit;
}

.head-fix .logo {
    padding: 12px 0;
}

.head-fix .head-link {
    top: 10px;
    right: 2.5%;
}

.head-fix .head-box {
    margin-top: 35px;
}

.w90 {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.com-tit {
    height: 75px;
    line-height: 75px;
    padding: 0 24px;
    box-sizing: border-box;
    border-bottom: 1px solid #F3F3F3;
    width: 100%;
    position: relative;
}

.com-tit a {
    display: inline-block;
    right: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    font-size: 12px;
    color: #666666;
    border-radius: 30px;
    background: #F3F3F3;
    transition: all 1.2s;
    cursor: pointer;
}

.com-tit a span {
    font-family: "宋体";
}

.com-tit a:hover {
    background: #862F9D;
    color: #fff;
}

.com-tit em {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    border: 4px solid #862F9D;
    margin: -9px 10px 0 0;
}

.com-tit02 em {
    border: 4px solid #1F3368;
}

.com-tit03 em {
    border: 4px solid #1E90B3;
}

.com-tit ul {
    display: inline-block;
}

.com-tit li {
    display: inline-block;
    font-size: 24px;
    color: #333333;
    margin-right: 12px;
    cursor: pointer;
}

.com-tit02 li {
    font-size: 20px;
    color: #666666;
}

.com-tit02 li.on {
    font-size: 24px;
    color: #333333;
    position: relative;
}

.com-tit02 li.on:before {
    width: 100%;
    height: 4px;
    background: #862F9D;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.com-operate {
    display: flex;
    justify-content: flex-start;
}

.com-operate li {
    width: 175px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    margin-right: 24px;
    font-size: 14px;
    color: #666666;
    border: 1px solid #CBCBCB;
    cursor: pointer;
    text-align: center;
    transition: all 0.8s;
    position: relative;
}

.com-operate li:before {
    width: 0;
    transition: all 0.8s;
    height: 100%;
    background: #862F9D;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.com-operate li:hover:before {
    width: 100%;
}

.com-operate-icon li i {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #666;
    position: relative;
    z-index: 2;
}

.com-operate li span {
    position: relative;
    z-index: 2;
}

.com-operate-icon li:first-child i {
    margin-right: 10px;
}

.com-operate-icon li:last-child i {
    margin-left: 10px;
}

.com-operate li.on {
    color: #ffff;
    border: 1px solid #862F9D;
    background: #862F9D;
}

.com-operate li:hover i,
.com-operate li:hover span,
.com-operate li.on i,
.com-operate li.on span {
    color: #fff;
}

.com-link {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.com-link li {
    position: relative;
}

.com-link li a {
    color: #666666;
    margin: 0 20px 0 0;
    font-size: 14px;
    display: block;
    line-height: 24px;
    transition: all 0.5s;
}

.com-link li:before {
    position: absolute;
    right: 10px;
    top: 25%;
    height: 50%;
    width: 1px;
    content: "";
    background: #666666;
}

.com-link li a:hover {
    color: #862F9D;
}

.com-link li:last-child:before {
    display: none;
}

.idx-ban {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 16px;
    margin-top: 108px;
}

.banner {
    display: block;
    width: 100%;
}

.idx-ban .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.idx-ban .swiper-pagination-bullet-active {
    background: #fff;
}

.idx-ban-pc-swiper {
    display: block;
}

.idx-ban-mobile-swiper {
    display: none;
}


.book-info {
    display: flex;
    justify-content: space-between;
    margin: 24px auto;
    z-index: 2;
    position: relative;
}

.book-info .item {
    width: calc(33.3% - 18px);
    box-sizing: border-box;
    transition: all 0.8s;
}

.book-info .item:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.2), 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.book-info .item h2 {
    padding: 40px 0 24px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.book-info .item01 {
    background: #862F9D;
    height: 210px;
}

.book-info .item02 {
    background: #1F3368;
    padding: 0 35px;
    height: 210px;
}

.book-info .item03 {
    background: #1E90B3;
    padding: 0 35px;
    height: 210px;
}

.book-info .item01 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 240px;
    margin: 0 auto;
}

.book-info .item01 ul li a,
.book-info .item02 ul li a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    font-size: 14px;
    display: block;
    line-height: 28px;
    transition: all 0.5s;
}

.book-info .item01 ul li a:hover,
.book-info .item02 ul li a:hover {
    color: #fff;
}

.book-info .item01 ul li,
.book-info .item02 ul li {
    position: relative;
}

.book-info .item01 ul li:before,
.book-info .item02 ul li:before {
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.5);
}

.book-info .item01 ul li:nth-child(3):before,
.book-info .item01 ul li:last-child:before {
    display: none;
}

.book-info .item02 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.book-info .item02 ul li:last-child:before {
    display: none;
}

.book-info .item02 .ipt {
    width: 90%;
    margin: 23px auto 0;
    position: relative;
}

.book-info .item02 .ipt input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 30px;
    background: #fff;
    color: #1F3368;
    line-height: 32px;
    height: 32px;
    text-indent: 16px;
    border: none;
    font-size: 12px;
}

.book-info .item02 .ipt i {
    color: #1F3368;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.book-info .item03 ul {
    padding-bottom: 40px;
}

.book-info .item03 ul li a {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    display: block;
    padding-left: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.5s;
}

.book-info .item03 ul li a:before {
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    width: 2px;
    content: "";
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.book-info .item03 ul li a:hover {
    color: #fff;
    cursor: pointer;
}

.book-info .item03 ul li a:hover:before {
    background: rgba(255, 255, 255, 1);
}

.news-list {
    display: flex;
    justify-content: space-between;
}

.news-list .item {
    width: 49%;
    height: 339px;
    background: #fff;
    transition: all 0.8s;
}

.news-list .item:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
}

.news-list .item .cont {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}

.news-list .item .cont a {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    display: block;
    padding-left: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666666;
    position: relative;
    transition: all 0.5s;
}

.news-list .item .cont a:before {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 3px;
    transform: translateY(-50%);
    content: "";
    background: #666;
    border-radius: 50%;
}

.news-list .item .cont a:hover {
    color: #6E3FC8;
    cursor: pointer;
}

.news-list .item .cont:hover:before {
    background: #6E3FC8;
}

.about-link {
    margin: 40px auto 80px;
}

.about-link h2 {
    color: #333333;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 8px;
    font-weight: 500;
}

.news-info {
    background: #fff;
    margin: 24px auto 80px;
}

.news-info .info {
    width: 95%;
    margin: 24px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-info:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
}

.tab-swiper {
    width: calc(100% - 100px);
    margin: 0;
}

.tab-swiper .swiper-slide {
    display: inline-block;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    width: auto;
    position: relative;
}

.tab-swiper .swiper-slide.on:before {
    width: 100%;
    height: 4px;
    background: #862F9D;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.tab-swiper .swiper-slide.on {
    font-size: 24px;
    color: #333333;
}

.cover {
    position: relative;
    width: 320px;
}

.cover img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.cover:before {
    position: absolute;
    top: 8px;
    right: -8px;
    width: 100%;
    height: 100%;
    background: #F2F2F2;
    content: "";
    z-index: 1;
}

.news-info .desc {
    width: calc(100% - 375px);
    margin-left: 55px;
    position: relative;
}

.news-info .desc img {
    position: absolute;
    z-index: 1;
    width: 33%;
    bottom: 30px;
    right: 0;
}

.news-info .desc .article {
    position: relative;
    z-index: 2;
}

.news-info .desc h2 {
    margin-top: 30px;
    line-height: 33px;
    color: #333333;
    font-size: 24px;
    position: relative;
}

.news-info .desc h2:before {
    position: absolute;
    bottom: -30px;
    left: 0;
    content: "";
    background: #862F9D;
    height: 8px;
    width: 70px;
}

.news-info .desc p {
    margin: 60px 0 85px;
    line-height: 24px;
    color: #666666;
    font-size: 14px;
}

.news-info .list .com-tit {
    width: 95%;
    padding: 0;
    margin: 0 auto;
}

.news-info .select-box {
    width: 100%;
    padding: 0 0 30px 0;
}

.news-info .select-box .item {
    margin: 10px 0;
    padding: 15px 4% 20px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.8s;
}

.news-info .select-box .item:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    background: #862F9D;
    content: "";
    opacity: 0;
    z-index: 2;
    transition: all 0.5s;
}

.news-info .select-box .item:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #F6F6F6;
    content: "";
    z-index: 1;
    transition: all 0.5s;
}

.news-info .select-box .item .bg {
    position: relative;
    z-index: 3;
}

.news-info .select-box .item h2 {
    color: #666666;
    font-size: 20px;
    line-height: 42px;
    position: relative;
    transition: all 0.8s;
}

.news-info .select-box .item h2:before {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: "";
    background: #666;
}

.news-info .select-box .item:hover:before {
    opacity: 1;
}

.news-info .select-box .item:hover:after {
    width: 100%;
}

.news-info .select-box .item:hover h2 {
    color: #862F9D;
}

.news-info .select-box .item:hover h2:before {
    background: #862F9D;
}

.news-info .select-box .item p {
    color: #666666;
    font-size: 14px;
    line-height: 32px;
}

.news-info .select-box .item .num {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news-info .select-box .item .num li {
    color: #666666;
    margin: 0 40px 0 0;
    font-size: 14px;
    display: block;
    line-height: 34px;
    transition: all 0.5s;
}

.news-info .select-box .item .num li i {
    font-size: 13px;
    margin-right: 10px;
}

.news-info .select-box .item .num li:hover {
    color: #862F9D;
    cursor: pointer;
}

.subscribe {
    display: flex;
    justify-content: space-between;
}

.subscribe .share h2 {
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.subscribe .share p {
    color: #333333;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.share-btn {
    position: relative;
}

.bshare-custom {
    position: absolute;
    top: -2px;
    left: 0;
}

.bshare-custom.icon-medium a {
    padding-left: 24px !important;
    margin-right: 11px;
    opacity: 0;
}

.bshare-custom.icon-medium a:hover {
    opacity: 0;
    cursor: pointer;
}

.subscribe .share ul {
    display: flex;
    justify-content: flex-start;
}

.subscribe .share ul li i {
    font-size: 24px;
    color: #999;
    margin-right: 16px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.8s;
}

.subscribe .share ul li.on i {
    color: #862F9D;
}

.email {
    width: 375px;
}

.email .ipt {
    width: 100%;
    margin: 0 auto 15px;
    position: relative;
}

.email .ipt input {
    width: 100%;
    box-sizing: border-box;
    padding-left: 40px;
    background: none;
    border: none;
    border-bottom: 1px solid #CBCBCB;
    color: #862F9D;
    line-height: 32px;
    height: 32px;
    font-size: 12px;
    transition: all 0.8s;
}

.email .ipt input:focus {
    border-bottom: 1px solid #862F9D;
}

.email .ipt i {
    color: #862F9D;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.email .com-operate {
    justify-content: space-between;
}

.email .com-operate li {
    margin: 0;
}

/*右侧悬浮*/
.right-nav {
    position: fixed;
    bottom: 100px;
    right: 0px;
    z-index: 99;
    display: none;
}

.right-nav li {
    position: relative;
}

.right-nav li span {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    display: block;
    background: #862F9D;
    cursor: pointer;
    transition: all .8s;
}

.right-nav li span:hover {
    background: #9d3db7;
}

.right-nav li span i {
    font-size: 24px;
    display: block;
    color: #fff;
}

.animateActive.book-info .item.item01 {
    -webkit-animation: fadeInUp 0.8s 0.1s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.book-info .item.item02 {
    -webkit-animation: fadeInUp 0.8s 0.5s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.book-info .item.item03 {
    -webkit-animation: fadeInUp 0.8s 1s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.news-list .item:first-child {
    -webkit-animation: fadeInRight 0.8s 0.1s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.news-list .item:last-child {
    -webkit-animation: fadeInLeft 0.8s 0.5s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.news-info .cover {
    -webkit-animation: fadeInLeft 0.8s 0.5s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animateActive.news-info .desc {
    -webkit-animation: fadeInRight 0.8s 0.1s 1 ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

@media screen and (max-width: 1336px) {
    /*头部*/
    .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        width: 90%;
        left: 5%;
        bottom: 20px;
        margin-left: 0;
    }

    .swiper-container-vertical > .swiper-pagination-bullets {
        width: 90%;
        left: 5%;
        margin-left: 0;
    }

    .w90 {
        width: 95%;
    }

    .hamburger {
        display: block;
        top: 0;
    }

    .head {
        padding: 0;
    }

    .logo > img {
        width: 40px;
    }

    .logo .tit h2 {
        font-size: 14px;
    }

    .head-box {
        position: absolute;
        top: 60px;
        margin-top: 0;
        display: none;
        left: 0;
        width: 100%;
        background: #862F9D;
        box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
    }

    .head-box > ul {
        display: block;
        padding: 10px 0;
    }

    .head-box > ul > li {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
    }

    .head-box > ul > li a {
        line-height: 42px;
        color: #fff;
        text-align: center;
        display: flex;
        justify-content: space-between;
    }

    .head-box > ul > li a .icon {
        color: #fff;
    }

    .head-box > ul > li.on > a, .head-box .child li a:hover {
        background: #7C2797;
    }

    .head-box .child {
        position: relative;
        top: 0;
    }

    .head-box > ul > li:hover .child {
        height: 0;
    }

    .head-box > ul > li:hover a .icon {
        transform: rotate(0);
    }

    .head-box .child li a {
        text-align: left;
        text-indent: 20px;
    }

    .head-box .node.active .child {
        height: auto;
    }

    .head-box .node.active:hover a .icon,
    .head-box > ul > li.node.active > a .icon {
        transform: rotate(180deg);
    }

    .head-box > ul > li.node.active > a .icon {
        color: #fff;
    }

    .head-fix {
        width: 100%;
        padding: 0 calc(12px + 5%);
    }

    .head-fix .head-box {
        margin-top: 0;
        top: 60px;
    }

    .head-fix .hamburger {
        top: 0;
        right: 25px;
    }

    .head-fix .logo {
        padding: 0;
    }

    .head-link {
        display: none;
    }

    .idx-ban {
        margin-top: 60px;
    }

    .news-info .list .com-tit a {
        right: 0;
    }
}

.ny_banner {
    background: url(../images/nr_banner.jpg) center;
    height: 200px;
    width: auto;
    background-size: 100% 200px;
    margin-top: 108px;
}

.ny_banner_n {
    text-align: center;
    background: url(../images/n_h.png) center bottom no-repeat;
    line-height: 60px;
    color: #fff;
    padding-top: 50px;
}

.ny_banner_n span {
    font-size: 14px;
    margin-left: 5px;
}

.ny_banner_n em {
    font-size: 24px;
    margin-right: 5px;
}

.book_position {
    color: #666666;
    font-size: 14px;
    line-height: 60px;
}

.book_position a {
    color: #666666;
    margin-right: 5px;
}

.book_position a:hover {
    color: #862F9D;
}

.book_position span {
    margin-left: 5px;
    color: #666;
}

/*期刊动态*/
.news_itme {
    width: 100%;
}

.news_itme .item {
    padding: 24px;
    position: relative;
    height: 120px;
    background: #fff;
    margin-bottom: 24px;
    transition: all 0.8s;
}

.news_itme .item .news_nr {
    padding: 0px 240px 0 144px;
    line-height: 25px;
}

.news_itme .item .news_nr h2 {
    color: #333;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 20px 0 10px 0;
}

.news_itme .item .news_nr p {
    color: #666;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news_itme .item .news_left {
    width: 120px;
    height: 120px;
    background: #1F3368;
    color: #fff;
    position: absolute;
    top: 24px;
    left: 24px;
}

.news_itme .item .news_left em {
    padding: 30px 0 0 30px;
    font-size: 24px;
    display: inline-block;
    line-height: 30px;
}

.news_itme .item .news_left span {
    font-size: 14px;
}

.news_itme .item .news_right {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 120px;
    width: 212px;
}

.news_itme .item .news_right img {
    width: 100%;
}

.news_itme .item:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
}

.news_itme .item:hover:before {
    opacity: 1;
}

.news_itme .item:hover h2 {
    color: #862F9D;
}

.news_itme .item:hover p {
    color: #333;
}

.news_itme .item:hover .news_left {
    background: #862F9D;
}


/*文章详情*/
.news_details {
    background: #fff;
}

.news_details_bd {
    padding: 40px;
}

.news_details_title {
    color: #333;
    font-size: 24px;
    line-height: 28px;
    padding-top: 20px;
}

.news_details_span {
    color: #666;
    font-size: 14px;
    padding: 30px 0;
}

.news_details_nr {
    color: #333;
    font-size: 14px;
    line-height: 28px;
}

.news_details_page {
    padding: 60px 0 30px 0;
    height: 80px;
}

.news_page {
    width: 45%;
    border: 1px solid #CBCBCB;
    height: 80px;
    position: relative;
    color: #666;
    line-height: 25px;
    transition: all 0.8s;
}

.news_page span {
    font-size: 12px;
    display: inline-block;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.news_page p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.news_up {
    float: left;
}

.news_page.news_up span {
    padding-left: 80px;
}

.news_page.news_up p {
    padding-left: 80px;
}

.news_page.news_down span {
    padding-right: 80px;
}

.news_page.news_down p {
    padding-right: 80px;
}

.news_up i {
    position: absolute;
    top: 32px;
    left: 32px;
}

.news_down {
    float: right;
    text-align: right;
}

.news_down i {
    position: absolute;
    top: 32px;
    right: 32px;
}

.news_page:hover {
    border: 1px solid #862F9D;
}

.news_page:hover i {
    color: #862F9D;
}

.news_page:hover span {
    color: #862F9D;
}

.news_page:hover p {
    color: #862F9D;
}


/*期刊详情*/
.periodical_dateils {
    background: #fff;
    margin-bottom: 40px;
    position: relative;
}

.periodical_dateils_bd {
    padding: 24px;
}

.periodical_dateils_1 {
    position: relative;
    margin-bottom: 20px;
}

.periodical_dateils_1t {
    color: #333;
    font-size: 24px;
    line-height: 28px;
}

.periodical_dateils_1s {
    color: #666;
    font-size: 14px;
    padding: 20px 0;
}

.periodical_dateils_2s {
    color: #666;
    font-size: 14px;
}

.periodical_dateils_1:before {
    position: absolute;
    bottom: -15px;
    left: 0;
    content: "";
    background: #862F9D;
    height: 8px;
    width: 70px;
}

.periodical_dateils_2 {
    margin-top: 40px;
}

.periodical_dateils_3 .com-tit {
    padding: 0px !important;
    font-size: 14px !important;
}

.periodical_dateils_3 .com-tit .tab-swiper .swiper-slide.on {
    font-size: 14px !important;
    color: #862F9D;
}

.periodical_dateils_3 .com-tit .tab-swiper .swiper-slide {
    font-size: 14px !important;
}

.periodical_dateils_3 .com-tit .tab-swiper {
    width: 100%;
}

.text_list_itme .itme {
    margin: 0px 0px 20px 0px;
    background: #fff;
    padding: 20px 180px 40px 40px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.8s;
}

.text_list_itme .itme h2 {
    font-size: 16px;
    color: #333333;
    line-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.text_list_itme .itme p {
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.text_list_itme .itme .text_itme_right {
    text-align: center;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 50%;
    margin-top: -22.5px;
    width: 153px;
    height: 55px;
    color: #CBCBCB;
    font-size: 24px;
    line-height: 25px;
    font-weight: normal;
    border-left: 1px solid #F3F3F3;
}

.text_list_itme .itme .text_itme_right em {
    text-align: left;
    display: inline-block;
}

.text_itme_right i {
    color: #862F9D;
    display: inline-block;
    line-height: 55px;
    display: none;
    font-size: 20px;
}

.text_list_itme .itme .text_itme_right span {
    font-size: 14px;
}

.text_list_itme .itme:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    background: #862F9D;
    content: " ";
    opacity: 0;
    z-index: 2;
    transition: all 0.5s;
}

.periodical_dateils_down {
    padding-top: 20px;
    color: #333;
    font-size: 14px;
    line-height: 35px;
}

.periodical_dateils_down b {
    color: #333;
    font-size: 14px;
    font-weight: normal;
    float: left;
    line-height: 35px;
    margin-right: 15px;
}

.periodical_dateils_down .num {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 !important;
}

.periodical_dateils_down .num li {
    color: #666666;
    margin: 0 40px 0 0;
    font-size: 14px;
    display: block;
    line-height: 34px;
    transition: all 0.5s;
}

.periodical_dateils_down .num li i {
    font-size: 13px;
    margin-right: 10px;
}

.periodical_dateils_down .num li:hover {
    color: #862F9D;
    cursor: pointer;
}

.periodical_dateils .com-operate-icon {
    position: absolute;
    top: 24px;
    right: 0px;
}


.text_list_itme .itme {
    margin: 0px 0px 20px 0px;
    background: #fff;
    padding: 20px 180px 40px 40px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.8s;
}

.text_list_itme .itme h2 {
    font-size: 16px;
    color: #333333;
    line-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.text_list_itme .itme p {
    font-size: 14px;
    color: #666666;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.text_list_itme .itme .text_itme_right {
    text-align: center;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 50%;
    margin-top: -22.5px;
    width: 153px;
    height: 55px;
    color: #CBCBCB;
    font-size: 24px;
    line-height: 25px;
    font-weight: normal;
    border-left: 1px solid #F3F3F3;
}

.text_list_itme .itme .text_itme_right em {
    text-align: left;
    display: inline-block;
}

.text_itme_right i {
    color: #862F9D;
    display: inline-block;
    line-height: 55px;
    display: none;
    font-size: 20px;
}

.text_list_itme .itme .text_itme_right span {
    font-size: 14px;
}

.text_list_itme .itme:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    background: #862F9D;
    content: " ";
    opacity: 0;
    z-index: 2;
    transition: all 0.5s;
}

.news_page p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 0 !important;
}

.text_list_itme .itme:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
    padding-left: 48px;
}

.text_list_itme .itme:hover:before {
    opacity: 1;
}

.text_list_itme .itme:hover em {
    display: none;
}

.text_list_itme .itme:hover h2 {
    color: #862F9D;
}

.text_list_itme .itme:hover p {
    color: #333;
}

.text_list_itme .itme:hover i {
    display: block;
    transition: all 0.8s;
}

.pages a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #666;
    border: 1px solid #CBCBCB;
    margin: 0 4px;
}

.pages a.p_page {
    color: #666;
}

.pages a:hover,
.pages a.on {
    background: #862f9d;
    color: #fff;
    border: 1px solid #862f9d;

}

.pages span {
    color: #666;
}

.pages {
    text-align: center;
    margin: 40px auto;
}

.book_list {
    box-sizing: border-box;
    border-bottom: 1px solid #F3F3F3;
    width: 100%;
    position: relative;
}

.book_list a {
    display: inline-block;
    right: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    transition: all 1.2s;
    cursor: pointer;
}

.book_list .tab-swiper .swiper-slide {
    width: 80px;
    height: 40px;
    border: 1px solid #CBCBCB;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
}

.book_list .tab-swiper .swiper-slide.on {
    background: #862F9D;
    font-size: 14px;
    color: #fff;
    border: 1px solid #862F9D;
}

.book_list .tab-swiper .swiper-slide.on:before {
    opacity: 0;
}

.book_list .tab-swiper {
    width: 100% !important;
}

.book_list_img ul {
    zoom: 1;
    width: 100%;
    padding: 0 !important;
    margin-top: 10px;
}

.book_list_img li {
    width: 20%;
    float: left;
    margin-bottom: 3%;
    padding: 2%;
    margin-right: 1%;
    background: #fff;
}

.book_list_img li img {
    width: 100%;
}

.book_list_img li p {
    padding: 15px 0 0 0;
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.marginR0 {
    margin-right: 0 !important;
}

.maginT1 {
    padding-top: 20px !important;
    margin-top: 0px !important;
}

.maginT0 {
    margin-top: 0px !important;
}

.book_list_img li:hover {
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
}

.book_list_img li:hover p {
    color: #862F9D;
}

.s_clear {
    clear: both;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .com-tit {
        height: 65px;
        line-height: 65px;
    }

    .com-tit em {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .com-tit li {
        font-size: 20px;
    }

    .com-tit02 li {
        font-size: 16px;
    }

    .com-tit02 li.on {
        font-size: 20px;
    }

    .com-tit a {
        height: 25px;
        line-height: 25px;
        padding: 0 10px;
    }

    .tab-swiper .swiper-slide {
        font-size: 16px;
    }

    .tab-swiper .swiper-slide.on {
        font-size: 20px;
    }

    .book-info {
        margin: 18px auto;
    }

    .book-info .item {
        width: calc(33.3% - 12px);
    }

    .book-info .item02 .ipt {
        margin: 15px auto 0;
    }

    .book-info .item02, .book-info .item03 {
        padding: 0 25px;
    }

    .book-info .item h2 {
        font-size: 18px;
    }

    .news-list .item .cont {
        padding: 20px 0;
    }

    .news-info .desc h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 0;
    }

    .news-info .desc h2:before {
        height: 4px;
        bottom: -20px;
    }

    .news-info .desc p {
        margin: 40px 0 65px;
        line-height: 24px;
    }

    .news-info .desc img {
        width: 60%;
    }

    .news-info {
        margin: 18px auto 60px;
    }

    .news-info .select-box .item h2 {
        font-size: 20px;
        line-height: 34px;
    }

    .news-info .select-box .item .num li,
    .com-link li a {
        font-size: 12px;
    }

    .about-link {
        margin: 40px auto 60px;
    }
}

@media screen and (max-width: 800px) {
    .idx-ban-swipe.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 10px;
    }

    .book-info {
        display: block;
    }

    .book-info .item {
        width: 100%;
        margin-bottom: 18px;
        padding-bottom: 40px;
    }

    .book-info .item02 .ipt {
        width: 100%;
    }

    .book-info .item03 {
        margin-bottom: 0;
    }

    .book-info .item03 ul {
        padding-bottom: 0;
    }

    .news-list {
        display: block;
    }

    .news-list .item {
        width: 100%;
        margin-bottom: 18px;
    }

    .news-info .info {
        display: block;
    }

    .cover {
        margin: 0 auto;
    }

    .news-info .desc {
        width: 100%;
        margin: 25px 0 0 0;
    }

    .news-info .desc p {
        margin: 40px 0;
    }

    .news-info .desc img {
        max-width: 250px;
    }

    .news-info .desc .article {
        margin-bottom: 10px;
    }

    .news-info .select-box .item {
        padding: 15px 30px 20px;
        margin: 10px 0 0 0;
    }

    .news-info .select-box .item h2 {
        font-size: 18px;
        line-height: 28px;
    }

    .news-info .select-box .item p {
        font-size: 12px;
        line-height: 28px;
    }

    .subscribe {
        display: block;
    }

    .email {
        width: 100%;
        margin-top: 20px;
    }

    .email .com-operate li {
        width: 48%;
    }

    .idx-ban-pc-swiper {
        display: none;
    }

    .idx-ban-mobile-swiper {
        display: block;
    }

    .periodical_dateils .com-operate-icon {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

}

@media screen and (max-width: 520px) {
    .com-operate {
        width: 100%;
        justify-content: space-between;
    }

    .com-operate li {
        width: 48%;
        margin: 0;
    }

    .text_list_itme .itme {
        padding: 20px 40px 20px 20px !important;
    }

    .text_list_itme .itme .text_itme_right {
        display: none;
    }

    .news_right {
        display: none;
    }

    .news_itme .item .news_nr {
        padding: 0px 0px 0 144px;
    }

    .news_page {
        width: 100%;
    }

    .news_page.news_down {
        margin-top: 20px;
    }

    .news_details_page {
        height: 180px;
    }

    .periodical_dateils .com-operate-icon {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .book_list_img li {
        width: 90%;
        padding: 16px 5%;
    }
}