/**
 * Create by XIAOMU
 * Date: 2026/1/22
 * Name : main.app.css
 */
@import url('./font.css?m=1');
@import url('../iconfont/iconfont.css');

html {
    color: #ffffff;
    background: #000;
    font-family: 'UKIJ Tor';
}

* {
    line-height: 1.5;
    box-sizing: border-box;
}

blockquote, body, button, code, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
    padding: 0;
    margin: 0
}

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

fieldset, img {
    border: none
}

a {
    text-decoration: none;
    color: #c3c3c3;
    outline: 0
}

em, var {
    font-style: normal
}

address, caption, cite, code, dfn, em, optgroup, th, var {
    font-style: inherit;
    font-weight: inherit
}

del, ins {
    text-decoration: none
}

li {
    list-style: none
}

caption, th {
    text-align: left
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400
}

q:after, q:before {
    content: ''
}

abbr, acronym {
    border: 0;
    font-variant: normal
}

legend {
    color: #000
}

button, input, optgroup, option, select, textarea {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit
}

button, input, select, textarea {
    font-size: 100%;
    outline: 0
}

body {
    -webkit-user-select: none;
    -webkit-text-size-adjust: none;
    background: #000000;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch
}

::-webkit-scrollbar {
    width: 0;
    height: 0
}

::-webkit-scrollbar-thumb {
    border-radius: 1.3vw;
    -webkit-box-shadow: inset 0 0 .8vw rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 .8vw rgba(0, 0, 0, .3);
    background-color: #95b6ef
}

img {
    -webkit-touch-callout: none;
    vertical-align: middle;
}

button, input[type=button], input[type=date], input[type=reset], input[type=submit], input[type=text], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent !important
}

a, input[type=password], input[type=text], select, textarea {
    -webkit-tap-highlight-color: transparent !important
}

input::-webkit-input-placeholder {
    color: #666
}

.hide {
    display: none !important
}

.show {
    display: block
}

.f-lex {
    display: flex
}

/* 搜索框 - 手机优化 */
.search {
    position: relative;
    margin: 10px;
    padding: 10px 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.search .texts {
    flex: 1;
    border: none;
    outline: none;
    padding: 4px 10px;
    font-size: 15px;
    background: transparent;
    color: #333;
}


.search i {
    color: #666;
    font-size: 18px;
}

/* 轮播图 - 手机优化 */
.swiper {
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 10px 12px;
    border-radius: 10px;
    overflow: hidden;
    width: calc(100% - 20px);
    margin-top: 10px;
}

.banners .swiper-slide {
    width: 41%;
    height: 160px;
}

.banners .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 3px 3px 4px 0 #000000;
}

/* 导航栏 - 手机4个按钮 */
.nav-list {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    margin: 0 10px 12px;
    flex-direction: row-reverse;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.nav-item i {
    font-size: 24px;
    color: #ffffff;
    width: 60px;
    height: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 第一个导航图标 - 蓝色渐变 */
.nav-item:nth-child(1) i {
    background: linear-gradient(45deg, #ff6a9d, #d93939);
}

/* 第二个导航图标 - 橙色渐变 */
.nav-item:nth-child(2) i {
    background: linear-gradient(45deg, #a46fff, #5c05f2);
}

/* 第三个导航图标 - 绿色渐变 */
.nav-item:nth-child(3) i {
    background: linear-gradient(45deg, #70bcff, #0088ff);
}

/* 第四个导航图标 - 紫色渐变 */
.nav-item:nth-child(4) i {
    background: linear-gradient(45deg, #ffc063, #ff9800);
}

.nav-item span {
    font-size: 12px;
    text-align: center;
}

/* 分类列表 - 手机4行布局 */
.cate-list {
    background-image: url('../images/nav-bg.jpeg');
    width: 96%;
    min-height: 104px;
    display: flex;
    flex-wrap: wrap;
    margin: 10px 2%;
    border-radius: 8px;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.cate-list .items-bg {
    border-radius: 10px;
    background: #000000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8;
}

.cate-list .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 每行4个 */
    grid-template-rows: repeat(2, auto); /* 2行 */
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    position: relative;
    width: 100%;
    direction: rtl;
}

.cate-list .items a {
    display: block;
    padding: 8px 5px;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 电影列表 - 手机2列布局 */
.main {
    margin: 0 0 15px;
    border-radius: 12px;
    overflow: hidden;
}

.titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: row-reverse;
}

.right, .mores {
    display: flex;
    align-items: center;
    gap: 6px;
}

.right span {
    font-size: 16px;
    font-weight: 600;
}

.mores {
    font-size: 13px;
    color: #999;
}


.film-list-item {
    /* 手机2列 */

    /* 手机2列 */
    gap: 10px;
    margin: 0 10px;
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 6px));
    margin-top: 10px;
}

.film-list-item .item {
    width: 99%;
    margin-bottom: 10px;
}


.film-list-item .item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}


.film-list-item .info h3 {
    width: 100%;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 5px;
}

.film-list-item .info-cate {
    display: flex;
    gap: 4px;
    font-size: 11px;
    color: #888;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.film-list-item .info-cate span {
    color: #9f9f9f;
}

.collect-list {
    display: flex;
    margin: 10px;
    flex-direction: row-reverse;
    gap: 10px;
    flex-wrap: wrap;
}

.collect-list a {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #444;
    width: calc(17% - 10px);
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: 'iconfont';
    border-radius: 7px;
    font-size: 18px;
    border: 1px solid #eee;
}

.collect-list a.active {
    background: linear-gradient(-60deg, #ff5858, #f09819);
    color: #fff;
    border-color: #ff5859;
}

/* 首页历史记录样式 */
.home-history {
    position: relative;
    margin: 15px 10px;
    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: space-between;
}

.home-history img {
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.5s ease;
    width: 83px;
    height: 93px;
    border-radius: 10px;
}

.home-history:hover img {
    transform: scale(1.05);
}

.home-history .infos {
    padding: 10px;
    display: flex;
    align-items: flex-end;
    width: calc(100% - 105px);
    flex-direction: column;
    position: relative;
    justify-content: space-between;
}

.home-history .title h1 {
    font-weight: 600;
    margin: 0;
    height: 30px;
    font-size: 16px;
    text-align: right;
}

.home-history .mores {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    background: #0ce48a;
    padding: 6px 12px;
    border-radius: 7px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid #0ce48a;
    flex-direction: row-reverse;
}

.home-history .mores i {
    font-size: 12px;
    /* 从左箭头变成右箭头 */
    transition: transform 0.3s ease;
}


.menus li {
    -webkit-flex-shrink: 0;
    direction: rtl;
}

.menus {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    direction: rtl;
    padding-right: 7px;
    padding-bottom: 5px;
}

.menus li {
    padding: 5px 0px;
    width: 83px;
    text-align: right;
    text-align: center;
}

.menus li:nth-child(1) {
    width: auto;
    margin-left: 10px
}

.menus .on a {
    padding: 4px 15px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(300deg, #00c472, #0ce48a);
    -webkit-transform: translate(.8px);
    transform: translate(.8px);
    transition-duration: .5s;
    -webkit-transform: 2.8s;
    transform: 2.8s;
    -webkit-mask: radial-gradient(circle at 19px, transparent 5px, red 0) -20px;
    box-shadow: rgba(17, 17, 26, .1) 0 8px 24px, rgba(17, 17, 26, .1) 0 16px 56px, rgba(17, 17, 26, .1) 0 24px 80px;
}

.menus li a {
    display: inline-block;
    font-size: 14px;
}

/** search **/


.header-title {
    display: flex;
    margin: 20px 10px;
    justify-content: space-between;
    align-items: center;
}

.header-title .back {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.header-title .tit {

}

.searchs {
    margin: 10px;
    background: #0ce48a;
    border-radius: 30px;
    padding: 5px;
    overflow: hidden;
    position: relative;
}

.searchs form {
}

.searchs form input {
    width: 100%;
    border: 0;
    height: 40px;
    border-radius: 25px;
    text-align: right;
    padding: 5px 10px;
    font-size: 12px;
}

.searchs form button {
    position: absolute;
    left: 4px;
    top: 5px;
    height: 40px;
    width: 40px;
    border: 0;
    border-radius: 50%;
    background: #0ce48a;
    color: #fff;
}

.search-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.search-list .items {
    padding: 5px 11px;
    font-size: 14px;
}

/** vip */
/* VIP特权容器 */
.vipContents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    padding-bottom: 60px;
    margin-top: -70px;
    padding-top: 80px;
}

/* 特权项目 */
.vipContents .item {
    display: flex;
    align-items: center;
    direction: rtl;
    flex-direction: column;
    text-align: center;
}

.vipContents .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
}

/* VIP图标 */
.vipContents .item i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: flex;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
    align-items: center;
    justify-content: center;
}

.vipContents .item i::after {
    content: "✓";
    color: white;
}

/* VIP文字描述 */
.vipContents .item span {
    font-size: 12px;
    font-weight: 600;
    display: block;
    height: 35px;
    line-height: 40px;
}

.viplist-card {
    padding: 10px;
    margin-top: -40px;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-around;
    padding-top: 40px;
}

.viplist-card .items {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
    border: 1px solid #eff1f3;
    flex-direction: column;
    margin-bottom: 5%;
    border-radius: 9px;
    padding: 15px;
    position: relative;
}

.viplist-card .items:nth-child(1) {
    width: 90%;
}

.viplist-card .items .vip_price {
    color: #fbb400;
}


.viplist-card .items .vip_title {
    font-size: 12px;
    height: 35px;
    line-height: 35px;
}

.viplist-card .active {
    border-color: #fbb400;
    background: #fff3d4;
}

.viplist-card .active .vip_price {
    color: #000000;
}

.viplist-card .active .vip_title {
    color: #999999;
}

.viplist-card .active::before {
    content: "✓";
    position: absolute;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    background: #fbb400;
    border-radius: 50%;
    color: #fff;
    top: -5px;
    right: -5px;
}

.vip-contents {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 10px;
    align-items: center;
}

.vip-contents i {
    width: 30px;
    height: 30px;
    display: block;
    line-height: 30px;
    font-size: 30px;
    margin-bottom: 10px;
    color: #fbb200;
}

.vip-contents div {
    font-size: 12px;
    text-align: center;
    height: 60px;
    line-height: 25px;
}

.users {
    background: #0ce48a;
    display: flex;
    padding: 10px;
    flex-direction: column;
    padding-bottom: 0;
    height: 260px;
    overflow: hidden;
}

.users .users-info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin-top: 31px;
}

.users .users-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.users .users-info .info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.users .users-info .info p {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

.users .users-info .info p span {
    font-size: 12px;
}

.users .user-card {
    background: #00a35f;
    margin-top: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.users .user-card .content {
    font-size: 12px;
    color: #fff;
}

.users .user-card .start-vip {
    padding: 6px 12px;
    background: #000;
    border-radius: 7px;
    color: #fff;
}

.user-history {
    background: #000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -54px;
    overflow: hidden;
}

.user-history .titles {
    height: 60px;
    margin-top: 10px;
}

.user-history .titles span {
    font-size: 12px;
    font-size: 18px;
    margin-right: 15px;
}

.user-history .users-history-list {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    direction: rtl;
    margin: 0 10px;
}

.user-history .users-history-list .item {
    margin-left: 20px;
}

.user-history .users-history-list .item img {
    width: 119px;
    height: 171px;
    border-radius: 5px;
}

.user-history .users-history-list .item .name {
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 5px;
}

.users-navbar {
    margin: 10px;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.users-navbar .item {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.users-navbar .item i {
    font-size: 30px;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    background: linear-gradient(45deg, #FF9800, #ffb548);
    border-radius: 50%;
    color: #fff;
}

.users-navbar .item i.i1 {
    background: linear-gradient(45deg, #55e48b, #00ff60);
}

.users-navbar .item span {
    font-size: 12px;
    margin-top: 20px;
}

/******player*****/
.play_info {
    direction: rtl;
    padding: 10px;
    position: relative;
}

.play_info img {
    width: 90px;
    border-radius: 5px;
    height: 115px;
}

.play_info .pinfo {
    width: 70%;
    margin-right: 3%;
}

.play_info .pinfo h3 {
    height: 40px;
    line-height: 40px;
}

.play_info .pinfo h6 {
    color: red;
    font-size: 12px;
    color: #f5f5f5;
    height: 35px;
    line-height: 35px;
}

.play_info .pinfo h6 a {
    padding: 5px 14px;
    border-radius: 5px;
    position: relative;
    color: #fff;
}

.play_info .pinfo h6 i {
    margin: 0 3px;
    font-size: 14px;
}

.area-color {
    background: #0ce48a !important;
}

.mid-color {
    background: #3F51B5;
}

.cid-color {
    background: #FF5722;
}

.pl_vip {
    height: 250px;
    background-size: 100% 100%;
    width: 100%;
}

.pl_vip .vip_conts {
    height: 250px;
    backdrop-filter: blur(7px);
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    display: inline-block;
}

.pl_vip .vip_conts h6 {
    width: 94%;
    text-align: center;
    font-size: 14px;
    margin: 3%;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 70px;
    display: inline-block;
    color: #fff;
}

.pl_vip .pay_money {
    display: flex;
    margin: 3%;
}

.pl_vip .pay_money a {
    width: 50%;
    height: 60px;
    line-height: 60px;
    direction: rtl;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background: #0000006e;
    backdrop-filter: blur(15px);
    border: 1px solid #8a8a8a;
}

.film-nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 10px;
}

.film-nav .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    text-align: center;
}

.film-nav .col i {
    width: 36px;
    height: 36px;
    background: linear-gradient(-60deg, #ff5858, #f09819);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.film-nav .col i.i2 {
    background: linear-gradient(-60deg, #FFD700 0%, #FFA500 100%);
}

.film-nav .col i.i3 {
    background: linear-gradient(-60deg, #55e48b, #10c956);
}

.film-nav .col p {
    font-size: 12px;
    width: 100%;
    display: block;
    height: 30px;
    line-height: 30px;
    margin: 15px;
}

.albvm {
    margin: 0 5px;
}

.albvm img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

.albvm p {
    width: 100%;
    height: 30px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    line-height: 35px;
}

.albvm h6 {
    width: 100%;
    height: 18px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    color: #888;
}

/* 手机版底部导航栏 */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #282828;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    /* 适配全面屏底部安全区域 */
    padding-bottom: env(safe-area-inset-bottom);
    flex-direction: row-reverse;
    height: 80px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
}

.footer .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #999;
    font-size: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    position: relative;
    cursor: pointer;
}

.footer .item i {
    font-size: 28px;
    margin-bottom: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.footer .item span {
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    transform: translateY(0);
}

/* 点击反馈动画 */
.footer .item:active {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

/* 选中状态 */
.footer .item.active {
    color: #0ce48a;
}

.footer .item.active i {
    transform: translateY(-8px) scale(1.1);
    font-size: 24px;
    animation: iconBounce 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .item.active span {
    font-weight: 600;
    opacity: 1;
    transform: translateY(-2px);
    animation: textFadeIn 0.4s ease-out;
}

/* 选中状态指示器 - 添加动画 */
.footer .item.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #0ce48a;
    border-radius: 1.5px 1.5px 0 0;
    transform: scaleX(0);
    animation: indicatorAppear 0.3s ease-out forwards;
    box-shadow: 0 0 10px rgba(12, 228, 138, 0.3);
}

/* 悬停效果 */
@media (hover: hover) {
    .footer .item:hover:not(.active) {
        color: #666;
    }

    .footer .item:hover:not(.active) i {
        transform: translateY(-2px);
    }

    .footer .item:hover:not(.active) span {
        opacity: 1;
    }
}

/* 动画定义 */
@keyframes iconBounce {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.15);
    }
    100% {
        transform: translateY(-8px) scale(1.1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes indicatorAppear {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    70% {
        transform: scaleX(1.1);
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* 添加涟漪点击效果 */
.footer .item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(12, 228, 138, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.footer .item:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.is_vip {
    text-align: center;
}

.his_nav {
    display: flex;
    margin: 4vw 2%;
    overflow: hidden;
    background: #000;
    width: 96%;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}

.his_nav a {
    width: 31vw;
    text-align: center;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    border-radius: 25px;
}

.his_nav a.active {
    background: #55e48b;
    color: #fff;
}
