@charset "utf-8";
html {
    /* max-width: 750px; */
    margin: 0 auto;
    /* font-size: 62.5%; */
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* @media screen and (min-width:360px) and (max-width:374px) and (orientation:portrait) {
    html { font-size: 70.3%; }
}
@media screen and (min-width:375px) and (max-width:383px) and (orientation:portrait) {
    html { font-size: 73.24%; }
}
@media screen and (min-width:384px) and (max-width:399px) and (orientation:portrait) {
    html { font-size: 75%; }
}
@media screen and (min-width:400px) and (max-width:413px) and (orientation:portrait) {
    html { font-size: 78.125%; }
}
@media screen and (min-width:414px) and (max-width:431px) and (orientation:portrait){
    html { font-size: 80.86%; }
}
@media screen and (min-width:432px) and (max-width:479px) and (orientation:portrait){
    html { font-size: 84.375%; }
} */

:root {
    --mainColor: #192967;
    --fontColora: #aaaaaa;
    --fontColorb: #bbbbbb;
    --fontColorc: #cccccc;
    --fontColord: #dddddd;
    --fontColore: #eeeeee;
    --fontColorf: #ffffff;
    --fontColor0: #000000;
    --fontColor1: #111111;
    --fontColor2: #222222;
    --fontColor3: #333333;
    --fontColor4: #444444;
    --fontColor5: #555555;
    --fontColor6: #666666;
    --fontColor7: #777777;
    --fontColor8: #888888;
    --fontColor9: #999999;
    --lineColor: #0246a7;
    --lineColor2: #57e7ff;
    --bgColor: #e7eef8;
    --bg1Color: #f5f5f5;
    --bg2Color: #fefefe;
    --bg3Color: #1786bb;
}

.box {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.box_con {
    padding: 0 0.3rem;
    box-sizing: border-box;
}

/* 头部 */
header,
footer {
    padding: 0.3rem 0;
    box-sizing: border-box;
}

.head_con {
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 0.3rem;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--fontColorf);
}

header {
    background: var(--fontColorf);
    position: fixed;
    top: 0;
    z-index: 99;
}

header h1 a {
    display: block;
    width: 1.31rem;
    height: 0.6rem;
}

header h1 a img {
    object-fit: cover;
}

.head_right {
    display: inline-flex;
    justify-content: flex-end;
    width: calc(100% - 1.5rem);
    align-items: center;
}

.head_right a {
    display: block;
    width: 1rem;
    line-height: 0.45rem;
    text-align: center;
    font-size: 0.16rem;
    border-radius: 0.45rem;
    border: 1px solid var(--fontColor9);
    margin-right: 0.3rem;
    opacity: 1;
    transition: ease-in 0.2s;
}

.head_right a.a1 {
    background: var(--lineColor);
    color: var(--fontColorf);
    border: 1px solid var(--lineColor)
}

.head_right a.a2 {
    color: var(--lineColor);
}

.head_right .menu_icon {
    width: 0.44rem;
    height: 0.35rem;
    position: relative;
}

.head_right .menu_icon img {
    opacity: 1;
    transition: ease-in 0.5s;
}

.head_right .menu_icon::before,
.head_right .menu_icon::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.04rem;
    background: var(--fontColor3);
    border-radius: 0.04rem;
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -0.25rem;
    opacity: 0;
    transition: ease-in 0.2s;
}

.head_right .menu_icon::after {
    transform: rotate(135deg);
}

.menu_pop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: url(../images/menu_bg.jpg) no-repeat;
    background-size: cover;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: ease-in 0.2s;

}

.menu_pop_con {
    margin-top: 1.2rem;
}

.menu_pop_con ul li {
    font-size: 0.36rem;
    font-weight: bold;
    line-height: 1rem;
    color: var(--fontColor3);
}

.menu_pop_con ul li ul {
    height: 0;
    padding-left: 0.3rem;
    box-sizing: border-box;
    overflow: hidden;
}

.menu_pop_con ul li ul li {
    font-size: 0.32rem;
    line-height: 0.6rem;
    color: #666;
}

.menu_pop_con ul li a {
    display: block;
    position: relative;
}

.menu_pop_con ul li a span {
    position: absolute;
    right: 0;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    z-index: 2;
    margin-top: -0.2rem;
    transition: ease-in 0.2s;
}

.menu_pop_con ul li a span::before,
.menu_pop_con ul li a span::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 0.04rem;
    background: #333;
    position: absolute;
    top: 50%;
    margin-top: -0.02rem;
}

.menu_pop_con ul li a span::after {
    transform: rotate(90deg)
}

.menu_pop_con ul li.active a span::before {
    background: var(--lineColor);
}

.menu_pop_con ul li.active a span::after {
    display: none;
}

.menu_pop_con ul li.active ul {
    height: 100%;
    transition: ease-in 0.5s;
}

.fixeds .head_right a {
    opacity: 0;
    transition: ease-in 0.5s;
}

.fixeds .head_right .menu_icon img {
    opacity: 0;
    transition: ease-in 0.5s;
}

.fixeds .head_right .menu_icon::before,
.fixeds .head_right .menu_icon::after {
    opacity: 1;
    transition: ease-in 0.5s;
}

.fixeds .menu_pop {
    transform: translateX(0);
    transition: ease-in 0.5s;
}

/* 底部 */
footer {
    background: url(../images/mfooter_bg.jpg) no-repeat center;
    background-size: cover;
}

.foot_link p {
    text-align: center;
    font-size: 0.18rem;
    line-height: 0.32rem;
    color: var(--fontColorf);
    text-align: center;
}

.foot_link p a {
    color: var(--fontColorf);
}

.foot_txt {
    width: 100%;
}

.foot_txt p {
    text-align: center;
    font-size: 0.14rem;
    color: var(--fontColorf);
    margin: 0.2rem auto;
}

.foot_txt p span {
    margin: 0.2rem auto;
    display: block;
}

.foot_txt p span a {
    color: var(--fontColorf);
}

.foot_txt p span img {
    width: 0.2rem;
    height: 0.2rem;
}

.foot_info p {
    text-align: center;
    font-size: 0.14rem;
    line-height: 0.34rem;
    color: var(--fontColorf);
    opacity: 0.5;
}

.foot_info p a {
    color: var(--fontColorf);
    margin: 0 0.15rem;
}

.warp {
    margin-top: 1.2rem;
}

/* 首页 */
.swiper-container-banner {
    position: relative;
    overflow: hidden;
}

.swiper-pagination-banner {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    bottom: 0.25rem !important;
}

.swiper-pagination-banner .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.04rem;
    border-radius: 0.04rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 0.1rem !important;
}

.swiper-pagination-banner .swiper-pagination-bullet-active {
    background: var(--bg3Color);
}

.box1_list ul {
    margin: 0.6rem auto;
}

.box1_list ul li {
    width: calc(100% / 3 - 0.2rem);
    margin-right: 0.3rem;
    background-size: cover !important;
}

.box1_list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 1.30rem;
    border: 1px solid var(--fontColorf);
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
    padding: 0 0.2rem;
}

.box1_list ul li h3 {
    font-size: 0.22rem;
    line-height: 0.30rem;
    height: 0.60rem;
    color: var(--mainColor);
}

.box1_list ul li span {
    display: block;
    font-size: 0.14rem;
    line-height: 0.30rem;
    color: var(--fontColor9);
    margin-top: 0.05rem;
}

.box1_list ul li span::after {
    content: "";
    display: inline-flex;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/jt_icon.png) no-repeat;
    margin-left: 0.15rem;
}

.box1_list ul li:nth-child(3n) {
    margin-right: 0;
}

.pc-slide {
    position: relative;
    overflow: hidden;
}

.view {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: 3.8rem;
    line-height: 3.8rem;
    text-align: center;
    position: relative;
    border-radius: 0.05rem;
}

.preview {
    width: 100%;
    height: 0.8rem;
    overflow: hidden;
    margin: 0.3rem auto;
    position: relative;
}

.preview .swiper-container .swiper-slide {
    width: 1.7rem !important;
    height: 0.8rem !important;
    border-radius: 0.05rem;
    margin-right: 0.2rem;
    line-height: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    overflow: hidden;
}

.preview .swiper-container .swiper-slide a,
.view .swiper-container .swiper-slide a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.preview .swiper-container .swiper-slide a img,
.view .swiper-container .swiper-slide a img {
    vertical-align: top;
}

.view .swiper-container .swiper-slide .pic {
    height: 3.8rem;
}

.view .swiper-container .swiper-slide .tct {
    background: url(../images/box2_list_bg.png) no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 0.3rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.view .swiper-container .swiper-slide .tct span {
    display: block;
    position: absolute;
    top: 0;
    font-size: 0.16rem;
    line-height: 0.5rem;
    border-radius: 0 0 0.05rem 0.05rem;
    color: var(--fontColorf);
    font-size: 0.16rem;
    background: var(--lineColor);
    padding: 0 0.2rem;
}

.view .swiper-container .swiper-slide .tct span::before {
    content: "";
    display: inline-flex;
    width: 14px;
    height: 14px;
    background: url(../images/rl_icon.png) no-repeat;
    margin-right: 10px;
}

.view .swiper-container .swiper-slide .tct p {
    background: rgba(7, 23, 75, 0.3);
    font-size: 0.24rem;
    color: var(--fontColorf);
    line-height: 0.8rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    text-align: left;
    padding: 0 0.3rem;
    font-weight: bold;
}

.preview .swiper-container .swiper-slide img,
.view .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview .swiper-container {
    margin: 0 0.65rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.preview .swiper-container .swiper-slide.active-nav {
    border: 1px solid var(--lineColor);
    box-sizing: border-box;
}

.view .arrow-right,
.view .arrow-left {
    display: none;
}

.preview .arrow-right,
.preview .arrow-left,
.view .arrow-right,
.view .arrow-left {
    background: var(--bg1Color);
    color: var(--lineColor);
    position: absolute;
    top: 0;
    width: 0.5rem;
    height: 0.8rem;
    text-align: center;
    line-height: 0.8rem;
    z-index: 5;
    font-family: sans-serif;
    font-size: 0.2rem;
    font-weight: bold;
    border-radius: 0.05rem;
}

.preview .arrow-right:hover,
.preview .arrow-left:hover,
.view .arrow-right:hover,
.view .arrow-left:hover {
    background: var(--lineColor);
    color: var(--fontColorf);
}

.preview .arrow-left,
.view .arrow-left {
    left: 0.1rem;
}

.preview .arrow-right,
.view .arrow-right {
    right: 0.1rem;
}

.title {
    text-align: center;
    padding: 0.6rem 0 0;
}

.title h3 {
    font-size: 0.38rem;
    color: var(--mainColor);
}

.title p {
    font-size: 0.18rem;
    color: var(--mainColor);
    padding-top: 0.1rem;
}

.box3_list {
    margin: 0.3rem auto;
}

.box3_list .item {
    width: calc(100% / 2 - 0.15rem);
    margin-right: 0.3rem;
    height: 2.6rem;
    border-radius: 0.05rem;
    overflow: hidden;
    margin-bottom: 0.3rem;
    position: relative;
    box-shadow: 0 0.05rem 0.15rem rgba(2, 70, 167, 0.1);
}

.box3_list .item:nth-child(2n) {
    margin-right: 0;
}

.box3_list .item .item_tct {
    position: relative;
    height: 2.6rem;
}

.box3_list .item .item_tct .pic {
    width: 100%;
    height: 100%;
}

.box3_list .item .item_tct .tct {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 70, 167, 0.8);
    padding: 0.4rem;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: ease-in 0.5s;
    transform: translateY(0%);
}

.box3_list .item .item_tct .tct h3 {
    font-size: 0.28rem;
    color: var(--fontColorf);
}

.box3_list .item .item_tct .tct p {
    font-size: 0.18rem;
    color: var(--fontColorf);
    opacity: 0.6;
    margin: 0.1rem auto 0.25rem;
}

.box3_list .item .item_tct .tct span {
    margin: 0 auto;
    max-width: 1.40rem;
    display: inline-block;
    font-size: 0.14rem;
    line-height: 0.4rem;
    color: var(--fontColorf);
    text-align: center;
    padding: 0 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.4rem;
}

.box3_list .item .item_tct .tct span::after {
    content: "";
    display: inline-flex;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/jt_icon2.png) no-repeat;
    margin-left: 0.15rem;
}

.box3_list .item .item_pop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    transition: ease-in 0.5s;
}

.box3_list .item .item_pop .pic {
    width: 1.8rem;
    height: 1.8rem;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}

.box3_list .item .item_pop .txt p {
    font-size: 0.18rem;
    line-height: 0.3rem;
    color: var(--mainColor);
    text-align: center;
}

.box3_list .item:hover {
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}

.box3_list .item:hover .item_tct .tct {
    transform: translateY(-100%);
    transition: ease-in 0.5s;
}

.box3_list .item:hover .item_pop {
    transform: translateY(0%);
    transition: ease-in 0.5s;
}

.box4 {
    background: url(../images/box4_bg.jpg) no-repeat;
    background-size: cover;
}

.box4_con {
    margin: 0.3rem auto 0;
    padding-bottom: 0.3rem;
}

.member {
    position: relative;
    padding: 0.2rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 0.05rem;
}

.member .arrow-left,
.member .arrow-right {
    display: none;
}

.member .swiper-container {
    position: relative;
    overflow: hidden;
}

.member .swiper-container .swiper-slide a {
    display: block;
}

.member .swiper-container .swiper-slide .pic,
.member .swiper-container .swiper-slide .tct {
    width: 100%;
    overflow: hidden;
    border-radius: 0.05rem;
}

.member .swiper-container .swiper-slide .pic {
    height: 2.8rem;
}

.member .swiper-container .swiper-slide .tct {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.2rem 0.1rem;
    overflow: hidden;
    box-sizing: border-box;
}

.member .swiper-container .swiper-slide .tct h3 {
    font-size: 0.28rem;
    color: var(--mainColor);
}

.member .swiper-container .swiper-slide .tct span {
    display: block;
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: var(--mainColor);
    margin: 0.1rem 0;
}

.member .swiper-container .swiper-slide .tct p {
    font-size: 0.16rem;
    line-height: 0.24rem;
    color: var(--fontColor3);
}

.member .swiper-container .swiper-slide .tct em {
    max-width: 1.4rem;
    margin-top: 0.2rem;

    font-size: 0.14rem;
    line-height: 0.4rem;
    text-align: center;
    color: var(--fontColor9);
    font-style: normal;
    display: inline-block;
    padding: 0 0.25rem;
    border-radius: 0.4rem;
    box-sizing: border-box;
    border: 1px solid var(--fontColor9);
}

.member .swiper-container .swiper-slide .tct em::after {
    content: "";
    display: inline-flex;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/jt_icon.png) no-repeat;
    margin-left: 0.1rem;
}

.member .swiper-container .swiper-slide .tct em:hover {
    background: var(--lineColor);
    color: var(--fontColorf);
    border: 1px solid var(--lineColor);
}

.member .swiper-container .swiper-slide .tct em:hover::after {
    background: url(../images/jt_icon2.png) no-repeat;
}

.member .swiper-container .swiper-slide .pic img {
    transition: ease-in 0.5s;
}

.member .swiper-container .swiper-slide .pic:hover img {
    transform: scale(1.1);
    transition: ease-in 0.5s;
}

.premember {
    position: relative;
    overflow: hidden;
    margin: 0.3rem auto;
}

.premember .swiper-container {
    position: relative;
    overflow: hidden;
    margin: 0 0.65rem;
}

.premember .swiper-container .swiper-slide {
    width: 1.7rem !important;
    height: 0.8rem;
    border-radius: 0.05rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-right: 0.2rem;
    box-sizing: border-box;
}

.premember .swiper-container .active-nav {
    border: 1px solid var(--lineColor);
}

.premember .swiper-container .swiper-slide a {
    display: block;
    height: 0.8rem;
}

.premember .arrow-left,
.premember .arrow-right {
    width: 0.5rem;
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
    font-size: 0.2rem;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.05rem;
    color: var(--lineColor);
}

.premember .arrow-left {
    left: 0;
}

.premember .arrow-right {
    right: 0;
}

.premember .arrow-left:hover,
.premember .arrow-right:hover {
    background: var(--lineColor);
    color: var(--fontColorf);
}

/* record */
.record {
    background: url(../images/mrecord_bg.jpg) no-repeat bottom center;
    background-size: cover;
    min-height: 20.5rem;
}

.record_tit {
    width: 100%;
    height: 0.47rem;
    background: url(../images/record_tit_bg.png) no-repeat bottom;
    padding-bottom: 0.2rem;
    background-size: 233%;
    text-align: center;
    padding-top: 0.6rem;
    margin-bottom: 0.1rem;

}

.record_tit h3 {
    font-size: 0.36rem;
    color: var(--fontColorf);
    text-shadow: 0 0.02rem 0.20rem #1b51bb;
}

.record .record_con {
    margin: 0.5rem auto 0;
}

.record_row {
    justify-content: space-between;
}

.record_item {
    width: 100%;
    background: url(../images/record_items_bg.png) no-repeat;
    background-size: cover;
    min-height: 1.9rem;
    border: 1px solid #3ea9c4;
    position: relative;
    padding: 0.2rem;
    box-sizing: border-box;
    margin-bottom: 0.3rem;
}

.record_item .one,
.record_item .two,
.record_item .three,
.record_item .four {
    width: 0.28rem;
    height: 0.28rem;
    background: url(../images/record_icon.png) no-repeat;
    background-size: contain;
    position: absolute;

}

.record_item .one {
    top: -0.05rem;
    left: -0.05rem;
}

.record_item .two {
    top: -0.05rem;
    right: -0.05rem;
    transform: rotate(90deg);
}

.record_item .three {
    bottom: -0.05rem;
    right: -0.05rem;
    transform: rotate(180deg);
}

.record_item .four {
    bottom: -0.05rem;
    left: -0.05rem;
    transform: rotate(-90deg);
}

.record_item .tit {
    margin: -0.22rem auto 0px;
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.5rem;
    background: url(../images/record_item_bg.png) no-repeat top center;
    color: var(--lineColor2);
    font-weight: bold;
    background-size: contain;
}

.record_item .tct p {
    font-size: 0.16rem;
    line-height: 0.32rem;
    color: #9bc7cc;
}

.record_item .tct img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
}

.record_item2 {
    width: calc(100% / 2 - 0.15rem);
}

.record_item2 .tct p {
    text-align: center;
}

.record_item2 .tct p strong {
    text-align: center;
    display: block;
    font-size: 0.8rem;
    color: #57e7ff;
    line-height: 1.2;
    font-weight: normal;
}

.record_item2 .tct p span {
    width: calc(100% / 3);
    text-align: left;
}

.record_item3 .tct {
    justify-content: space-between;
    position: relative;
}

.record_item3 .tct p {
    width: calc(100% / 2 - 0.2rem);

}

.record_item3 .tct p span {
    width: calc(100% / 2);
}

.record_item3 .tct p span:first-child {
    text-align: right;
}

.record_item3 .tct::before {
    content: "";
    display: block;
    width: 1px;
    min-height: 1.3rem;
    background: #57e7ff;
    position: absolute;
    top: 0;
    left: 50%;
}

.mains_text {
    margin: 0.4rem auto;
    font-size: 0.16rem;
    /*line-height: 0.36rem;*/
}

.mains_text2 {
    margin: 0.4rem auto;
    font-size: 18px;
    /*line-height: 0.36rem;*/
}

.news_list {
    margin: 0.4rem auto;
}

.news_list ul li {
    margin-bottom: 0.4rem;
    transition: ease-in 0.2s;
}

.news_list ul li a {
    background: var(--bg1Color);
    align-items: center;
    justify-content: space-between;
}

.news_list ul li .pic {
    width: 2rem;
    height: 1.3rem;
    overflow: hidden;
}

.news_list ul li .tct {
    width: calc(100% - 2.6rem);
    margin: 0 0.3rem;
}

.news_list ul li .tct span {
    display: block;
    font-size: 0.16rem;
    line-height: 0.34rem;
    color: var(--fontColor3);
}

.news_list ul li .tct span::before {
    content: "";
    display: inline-flex;
    width: 0.15rem;
    height: 0.15rem;
    background: url(../images/time_icon.png) no-repeat;
    margin-right: 0.1rem;
    background-size: contain;
}

.news_list ul li .tct h3 {
    font-size: 0.22rem;
    line-height: 0.3rem;
    height: 0.6rem;
    font-weight: 600;
    transition: ease-in 0.2s;
}

.news_list ul li .tct em {
    font-size: 0.14rem;
    display: block;
    font-style: normal;
}

.news_list ul li .tct em::after {
    content: "";
    display: inline-flex;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/jt_icon.png) no-repeat;
    margin-left: 0.1rem;
    background-size: contain;
}

.news_list ul li:hover {
    box-shadow: 0 0.05rem0.15rem rgba(0, 0, 0, 0.1);
    transition: ease-in 0.5s;
}

.news_list ul li:hover .tct h3,
.news_list ul li:hover .more {
    color: var(--lineColor);
    transition: ease-in 0.5s;
}

.news_list ul li .pic img {
    transition: ease-in 0.2s;
}

.news_list ul li:hover .pic img {
    transition: ease-in 0.5s;
    transform: scale(1.1);
}

.news_title {
    padding: 0.4rem 0 0;
    text-align: center;
    border-bottom: 0.01rem solid var(--fontColord);
    margin-bottom: 0.4rem;
}

.news_title h3 {
    font-size: 0.32rem;
    line-height: 0.4rem;
    color: var(--fontColor3);
    font-weight: bold;
}

.news_title p {
    color: var(--fontColor9);
    line-height: 0.4rem;
    padding: 0.2rem 0;
    font-size: 0.14rem;
}

.news_title p span {
    font-size: 0.14rem;
    color: var(--fontColor9);
    margin: 0 0.1rem;
}

.product_page {
    margin: 0.4rem auto;
    border-top: 0.01rem solid var(--fontColord);
    padding-top: 0.4rem;
}

.product_page ul {
    background: var(--bg1Color);
    padding: 0.15rem 0.3rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product_page ul li {
    width: 33%;
    background: var(--fontColorf);
    text-align: center;
    margin-bottom: 0;
}

.product_page ul li a {
    font-size: 0.2rem;
    line-height: 0.6rem;
    color: var(--fontColor3);
    padding: 0 0.3rem;
    box-sizing: border-box;
    width: 100%;
    display: block;
}