@media screen and (min-width: 600px) {

    /* Hitokoto Page */
    .hitokoto-fullpage {
        width: 55%;
    }
     
/* 自定义侧边栏样式 */
.custom-drawer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

/* 侧边栏头部 */
.drawer-header {
    padding: 20px 16px;
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.drawer-logo {
    display: block;
    margin: 0 auto 10px auto;
    filter: brightness(1.2);
}

.drawer-title {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* 自定义导航容器 */
.custom-navigation {
    padding: 10px 0;
}

/* 用户欢迎区域 */
.user-welcome {
    padding: 15px 16px;
    background: rgba(255,255,255,0.1);
    margin: 10px 8px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.user-welcome .material-icons {
    font-size: 32px;
    margin-bottom: 5px;
    display: block;
}

.user-welcome span {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
    color: #fff;
}

/* 自定义导航链接 */
.custom-nav-link {
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
    margin: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.custom-nav-link:hover {
    background: rgba(255,255,255,0.15);
    border-left-color: rgba(255,255,255,0.8);
    transform: translateX(2px);
    color: white !important;
}

.custom-nav-link:active {
    background: rgba(255,255,255,0.2);
}

/* 导航图标 */
.nav-icon {
    font-size: 20px !important;
    margin-right: 12px;
    opacity: 0.9;
    min-width: 20px;
}

/* 导航文字 */
.nav-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
}

/* 移动端优化 */
@media screen and (max-width: 600px) {
    .drawer-header {
        padding: 15px 12px;
    }
    
    .custom-nav-link {
        padding: 10px 12px !important;
        margin: 3px 6px;
    }
    
    .nav-icon {
        font-size: 18px !important;
        margin-right: 10px;
    }
    
    .nav-text {
        font-size: 13px;
    }
    
    .custom-drawer {
        width: 280px !important;
    }
}

/* 侧边栏滚动条美化 */
.custom-drawer::-webkit-scrollbar {
    width: 6px;
}

.custom-drawer::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.custom-drawer::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.custom-drawer::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* 侧边栏底部装饰 */
.custom-navigation::after {
    content: '';
    display: block;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05));
    margin-top: 20px;
}

/* 原有的自定义按钮样式保持不变但优化 */
.custom-btn {
    background: linear-gradient(45deg, #3f51b5, #5c6bc0);
    color: white;
    padding: 12px 16px;
    min-width: 120px;
    border-radius: 12px;
    text-align: center;
    margin: 6px 8px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 6px rgba(63, 81, 181, 0.3),
                0 2px 4px rgba(63, 81, 181, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

/* 按钮波纹效果 */
.custom-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.custom-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* 悬停状态 */
.custom-btn:hover {
    background: linear-gradient(45deg, #303f9f, #3f51b5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(63, 81, 181, 0.4),
                0 4px 8px rgba(63, 81, 181, 0.3);
}

/* 活动状态（点击时） */
.custom-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 4px rgba(63, 81, 181, 0.3);
}

/* 移除MDL按钮的默认边距和行高影响 */
.mdl-button.custom-btn {
    line-height: normal;
    min-height: auto;
}
     
     
     
     
     
     
    .background{
        -webkit-filter: brightness(0.6);
        -ms-filter: brightness(0.6);
        -moz-filter: brightness(0.6);
        filter: brightness(0.6);
        position:absolute;
        width:100%;
        height:100%;
        z-index:-1;
        background:url(https://dec.axablog.cn/api/photo/index.php?width=1920&height=1080) center no-repeat;
        background-size:cover;

    }
    /* Content Style */
    .hitokoto-content {
        /*border-radius: 2px;*/
        padding: 80px 56px;
        margin-bottom: 80px;
    }
    /*Api Introduction Page*/
    .apitable{
        border-collapse: collapse;
    }
    .apitable>tbody>tr>td , .apitable>tbody>tr>th{
        border:1px   solid  #d7d7d7;
    }
}
@media screen and (max-width: 600px) {
    /*table{
 *  *         border-collapse: collapse;
 *   *             }
 *    *                 td ,th  {
 *     *                         border:1px   solid  #d7d7d7;
 *      *                             }*/
    .mdl-layout__drawer-button {
        color: #fff;
    }
    .apitable{
        border-collapse: collapse;
    }
    .apitable>td,.apitable>th{
        border:1px   solid  #d7d7d7;
    }
    /* Hitokoto Page */
    .hitokoto-fullpage {
        margin-bottom: 10vh !important;
    }

    .hitokoto-fullpage .word {
        line-height: 2.6rem !important;
    }

    .background{
        -webkit-filter: brightness(0.6);
        filter: brightness(0.6);
        position:absolute;
        width:100%;
        height:100%;
        z-index:-1;
        background:url(https://dec.axablog.cn/api/photo/index.php?width=1920&height=1080) center no-repeat;
        background-size:cover;
    }
    /* Content Style */
    .hitokoto-content {
        /*border-radius: 2px;*/
        padding: 20px;
    }

}
/* Hitokoto Page */
.hitokoto-fullpage {
    position: relative;
    color: white;
    z-index: 1;
    margin-top: 35vh;
    margin-bottom: 35vh;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

.hitokoto-fullpage .bracket {
    font-size: 30px;
}

.hitokoto-fullpage .bracket.left {
    position: absolute;
    left: 0;
    top: 0;
}

.hitokoto-fullpage .bracket.right {
    position: absolute;
    right: 0;
    bottom: 0;
}

.hitokoto-fullpage .word {
    font-size: 2.3rem;
    text-align: center;
    line-height: 50px;
    word-break: normal;
    margin: 0;
    padding: 15px 50px;
}

.hitokoto-fullpage .author {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    float: right;
    margin-top: 40px;
}

#footer {
    position: fixed;
    bottom: 5px;
    right: 15px;
    margin-bottom: 0px;
    text-align: right;
    z-index: 4;
    color: white;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

/* About Page */
header{
    box-shadow:0px 0px 3px #000000;
}
.hitokoto-ribbon {
    width: 100%;
    height: 25vh;
    background-color: #3F51B5;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.hitokoto-main {
    margin-top: -20vh;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


.hitokoto-container {
    max-width: 1800px;
    width: calc(100% - 16px);
    margin: 20px auto 20px auto;
}

.hitokoto-container .mdl-shadow--2dp,
.hitokoto-container .mdl-cell--8-col {
  margin: 0 auto;
}

.hitokoto-container .mdl-cell--2-col {
  display: none;
}

.hitokoto-layout.is-small-screen .demo-content {
    padding: 40px 28px;
}

.hitokoto-footer .mdl-mini-footer--link-list a {
    font-size: 13px;
}

.ticket-table tr td p {
    margin: 0;
    line-height: 0px;
}

.uploaded {
    height: 150px;
    margin: 0 10px 0 0;
    box-shadow: 0 0 10px #CCC;
}

.pd-30 {
    padding: 30px;
}

.expanded {
    width: 100%;
}

.progress-wrap {
    margin-top:10px;
    margin-bottom:10px;
}

.picbox {
    padding-top:0;
    padding-bottom:10px;
}

.fix-reply-container {
    max-width: 1250px;
    margin: 0;
}

.fix-reply-container p {
    width: 100%;
}
/*Api Introduction Page*/
.apitable{
    border-collapse: collapse;
}
.apitable>tbody>tr>td , .apitable>tbody>tr>th{
    border:1px   solid  #d7d7d7;
}
