@charset "utf-8";
:root {
    --green: #ffc000;
    --Grey-c: #909399;
}

html,
body {
    background-color: var(--green);
    color: #333;
    line-height: normal;
    font-size: 14px;
}

a,
a:hover {
    text-decoration: none;
    color: #333;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
    margin: 0;
    line-height: normal;
}

.bg-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, transparent 100%);
}

.c-pm {
    color: var(--pm-c) !important;
}

.c-md {
    color: var(--Grey-c) !important;
}

.line-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.line-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.line-4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.home-bg {
    width: 100%;
    height: 680px;
    background-size: cover;
    position: absolute;
    overflow: hidden;
    background-repeat: no-repeat;
}

.home-bg:after {
    content: '';
    display: block;
    width: 120%;
    height: 260px;
    background-color: var(--green);
    position: absolute;
    bottom: -160px;
    left: 50%;
    filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, 0);
}

.home-bg-m {
    display: none;
}

.home-warp {
    padding-top: 400px;
    position: relative;
    z-index: 10;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    margin: 40px;
}

.logo img {
    height: 100%;
}


/*导航条*/

.navbar {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.navbar .bar-qr {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
}

.navbar .bar-qr img {
    width: 100%;
    max-width: 130px;
}

.navbar .bar-qr span {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

.navbar .btn-bar {
    display: flex;
    align-items: center;
    margin-left: 180px;
}

.navbar .btn-bar a,
.navbar .btn-bar span {
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 60px;
    line-height: 58px;
    font-size: 22px;
    text-align: center;
    position: relative;
    float: left;
    background: #ffc600;
    background: linear-gradient(to right, #ffd900, #ffc000);
    color: #b33b3b;
    margin-right: 10px;
    cursor: pointer;
    padding-right: 20px;
}

.navbar .btn-bar a:before,
.navbar .btn-bar span:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #ffc100;
    background-repeat: no-repeat;
    background-position: center;
    color: #cd5c17;
    background-image: url(../images/icon-bar-lbm.png);
    margin-right: 20px;
    border-radius: 5px;
}

.navbar .down-btn {
    position: absolute;
    right: -8px;
    top: 48%;
    height: 80px;
    transform: translate(0, -45%);
    overflow: hidden;
    border-radius: 5px;
}

.navbar .down-btn:before {
    content: '';
    left: -250px;
    z-index: 10;
    top: 0;
    width: 60px;
    height: 75px;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    top: 0;
    transform: skewX(-45deg) translateX(0);
    transition: none;
}

.navbar .down-btn:hover:before {
    left: 120%;
    transition: 1s ease;
}

.navbar .down-btn a {
    display: flex;
    align-items: center;
    position: relative;
    height: 75px;
    background: linear-gradient(to right, #ffd900, #ffc000);
    color: #b33b3b;
    text-align: center;
    line-height: 75px;
    font-size: 24px;
    padding-right: 20px;
    border-radius: 5px;
}

.navbar .down-btn a:before {
    content: '';
    display: inline-block;
    left: 0;
    top: 0;
    width: 60px;
    height: 75px;
    background-color: #ffc100;
    background-repeat: no-repeat;
    background-position: center;
    color: #cd5c17;
    background-image: url(../images/down-btn.png);
    background-size: 24px;
    margin-right: 20px;
    border-radius: 5px;
}

.navbar .down-btn a:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    border: solid transparent;
    border-width: 6px 8px 0 0;
    border-top-color: #b33b3b;
}

.navbar-m {
    display: none;
}

.part {
    padding: 22px;
    background-color: #fff;
}


/*标题*/

.part-title {
    position: relative;
    margin-bottom: 30px;
}

.part-title .title {
    font-size: 22px;
}

.part-title .title em {
    font-size: 14px;
    color: #909399;
    margin-left: 10px;
}

.part-title .more {
    color: var(--Grey-c);
    font-size: 13px;
}


/*
.game-warp {}
*/

.game-part {
    flex: 1;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 0 50px -15px #ebebeb;
    z-index: 10;
    border-radius: 5px;
}


/*游戏展示*/


/*
.game-show {}

.game-show .item {}
*/

.game-show .item video {
    height: 330px;
}

.game-show .item img {
    max-height: 330px;
    height: 330px;
}

.game-main {}

.game-main .item {
    margin: 30px 0;
}

.part-title {
    padding-left: 40px;
}

.part-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    margin-top: 1px;
}

.part-title.game:before {
    background-image: url(../images/icon-game.png);
}

.part-title.news:before {
    background-image: url(../images/icon-news.png);
}

.part-title.images:before {
    background-image: url(../images/icon-images.png);
}

.part-title.comment:before {
    background-image: url(../images/icon-comment.png);
}

.game-main .content {
    margin: 30px 0;
    border-left: 2px solid #F2F6FC;
    margin-left: 10px;
    padding-left: 30px;
    font-size: 15px;
    line-height: 32px;
    color: #606266;
}

.game-main .content p {
    font-size: 15px;
    line-height: 32px;
    margin: 15px 0;
}

.game-main .game-desc {}

.game-main .game-desc .tags {}

.game-main .game-desc .tags span {
    background: #F2F6FC;
    border-radius: 3px;
    color: #909399;
    font-size: 13px;
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    line-height: normal;
}

.game-main .game-desc .tags span:hover {
    background: var(--pm-c);
    color: #fff;
}

.game-main .game-news {}

.game-main .game-news ul {}

.game-main .game-news ul li {
    border-bottom: 1px dashed #F2F6FC;
    font-size: 15px;
    color: #606266;
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.game-main .game-news ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

.game-main .game-news ul li a {
    color: #606266;
    display: block;
    flex: 1;
}

.game-main .game-news ul li .time {
    color: #909399;
}

.game-main .game-images .thumb {
    width: 286px;
    margin-right: 15px;
    display: block;
    height: 160px;
    position: relative;
    overflow: hidden;
}


/*.game-main .game-comment {}
.game-main .game-comment .comment-warp {
}*/

.game-main .game-comment .comment-item {
    border-bottom: 3px dashed #fbfbfb;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.game-main .game-comment .comment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

.game-main .game-comment .comment-item .user-top {
    display: flex;
    align-items: center;
    line-height: normal;
}

.game-main .game-comment .comment-item .user-top .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.game-main .game-comment .comment-item .user-top .name {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 5px;
}

.game-main .game-comment .comment-item .user-top .time {
    color: #909399;
    font-size: 11px;
    background-color: #f8f8f8;
    border-radius: 20px;
    padding: 2px 10px;
    background-image: url(../images/icon-time.png);
    background-repeat: no-repeat;
    background-position: 3px center;
    padding-left: 18px;
    margin-left: 10px;
}

.game-main .game-comment .comment-item .user-top .reply-time {
    font-size: 13px;
    color: #909399;
}

.game-main .game-comment .comment-item .user-top .place span:last-child:after {
    display: none;
}

.game-main .game-comment .comment-item .comment-content {
    padding-left: 51px;
    margin-top: 10px;
}

.game-main .game-comment .comment-item .comment-content img {
    max-width: 40%;
}

.game-main .game-comment .comment-item .reply-btn {
    margin-left: 51px;
    display: inline-block;
    background: #f8f8f8;
    padding: 0px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #909399;
}


/*侧边栏*/

.sidebar {
    width: 320px;
    position: relative;
    border-radius: 5px;
}


/*侧栏标题*/

.side-title {
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
}

.side-title .title {
    font-size: 17px;
    line-height: 17px;
    font-weight: bold;
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
}

.side-title .title:after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pm-c);
}

.side-game-box {}

.side-game-box .icon {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 20px;
}

.side-game-box h1 {
    font-size: 17px;
    margin-bottom: 25px;
}

.side-game-box .type {}

.side-game-box .type span {
    background: #F2F6FC;
    border-radius: 3px;
    color: #909399;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    line-height: normal;
    margin-right: 2px;
}

.side-game-box .desc {
    background: #f8f8f8;
    padding: 15px;
    margin-top: 20px;
    color: #909399;
    line-height: 24px;
}

.side-game-box .down-btn {
    display: block;
    margin-top: 20px;
    background: var(--pm-c);
    color: #fff;
    text-align: center;
    line-height: 42px;
    font-weight: bold;
}

.side-game-box .info-box {
    margin-top: 20px;
    background: #f8f8f8;
    padding: 15px;
    font-size: 15px;
    margin-bottom: 20px;
}

.side-game-box .info-box li {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 18px;
}

.side-game-box .info-box li:last-child {
    margin-bottom: 0;
}

.side-game-box .info-box li .t {
    color: #909399;
    flex: 1;
    overflow: hidden;
}

.side-game-box .info-box li .v {}

.side-news {}

.side-news .item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #F2F6FC;
}

.side-news .item:last-child {
    margin-bottom: 0;
}

.side-news .item .thumb {
    display: block;
    width: 120px;
    height: 75px;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
}

.side-news .item .title {
    margin-bottom: 15px;
    line-height: 20px;
}

.side-news .item .title a {
    font-size: 15px;
}

.side-news .item span {
    color: #909399;
    font-size: 13px;
}

.side-news .more {
    display: block;
    text-align: center;
    background: #F2F6FC;
    color: var(--pm-c);
    line-height: 42px;
    font-weight: bold;
}

.side-hot-game {}

.side-hot-game .item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #F2F6FC;
}

.side-hot-game .item .icon {
    display: block;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.side-hot-game .item .title {
    margin-bottom: 30px;
}

.side-hot-game .item .title a {
    font-size: 16px;
}

.side-hot-game .item .type {}

.side-hot-game .item .type span {
    background: #F2F6FC;
    border-radius: 3px;
    color: #909399;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    line-height: normal;
    margin-right: 2px;
}

.side-hot-game .item .view {
    display: inline-block;
    background: var(--pm-c);
    color: #fff;
    border-radius: 40px;
    padding: 6px 12px;
}

.score {
    width: 90px;
    height: 45px;
    background-image: url(../images/icon-rank-bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    text-align: center;
}

.score .size {
    color: var(--pm-c);
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}

.score .size em {
    color: var(--pm-c);
    font-size: 12px;
}

.score .title {
    color: var(--pm-c);
    font-size: 12px;
}


/*.side-links {}*/

.side-links li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.side-links li a {
    font-size: 13px;
    color: #606266;
}

.single-news {
    flex: 1;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 0 50px -15px #ebebeb;
    z-index: 10;
    padding: 30px;
}

.single-news .news-header {
    padding: 10px 0;
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #F2F6FC;
}

.single-news .news-header h1 {
    font-size: 26px;
    margin-bottom: 30px;
}


/*.single-news .news-header .info {}
*/

.single-news .news-header .info span {
    color: var(--Grey-c);
    font-size: 14px;
    margin: 0 20px;
}


/*.single-news .single-content {}*/

.single-news .single-content p {
    font-size: 16px;
    line-height: 30px;
    text-indent: 2em;
}

.single-news .single-content h3 {
    margin: 20px 0;
    border-left: 3px solid var(--pm-c);
    background: #f5fff9;
    color: var(--pm-c);
    margin: 15px 0;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
}

.single-news .single-content img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 68%;
    max-height: 300px;
}

.topnav {
    display: none;
}

.category-news {
    flex: 1;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 0 50px -15px #ebebeb;
    z-index: 10;
    padding: 30px;
}

.category-news .news-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #F2F6FC
}

.category-news .news-item .thumb {
    display: block;
    width: 220px;
    height: 138px;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.category-news .news-item .title {}

.category-news .news-item .title a {
    font-size: 17px;
    font-weight: bold;
}

.category-news .news-item .desc {
    margin: 20px 0;
    color: #909399;
    line-height: 28px;
    font-size: 14px;
}

.category-news .news-item .info {}

.category-news .news-item .info span {
    color: #909399;
    font-size: 14px;
    margin-right: 20px;
}

.footer {}

.footer a {
    color: rgba(255, 255, 255, .7) !important;
    margin-left: 3px;
}

.topnav,
.li-btn,
.ann-nav,
.header-bg,
.game-url-btn {
    display: none;
}

@media (max-width: 760px) {
    .header-bg{
        display: block;
        width: 100%;
        height: 60px;
        background-image: url(https://zj.zhiquhuyu.com/images/ann.gif);
    }
    .topnav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 0 15px 15px;
        /*background: var(--green);
        text-align: center;*/
        float: left;
    }
    .ann-nav{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 0 15px 0;
        float: left;
    /*background: var(--green);*/
    margin-left: 40px;
}
.topnav .icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 10px;
}
.ann-nav .icon-down{
    width: 80px;
    height: 30px;
    justify-content:center;
    display: block;
    margin-right: 10px;
}
.ann-nav .icon-gzhu{
    width: 80px;
    height: 30px;

}
.topnav .title {
    font-size: 17px;
    line-height: 26px;
    font-weight: bold;
    color: #fff;
}
.part-title {
    margin-bottom: 20px;
}
.part-title .title {
    font-size: 20px;
}
.part-title .title em {
    font-size: 14px;
    color: #909399;
    margin-left: 10px;
}
.part-title .more {
    color: var(--Grey-c);
    font-size: 13px;
}
.game-warp {
    background: #fff;
    margin: 0 !important;
    box-shadow: none;
    padding: 10px;
}
.game-main .content p {
    font-size: 14px;
    line-height: 28px;
}
.game-main .game-desc .tags span {
    font-size: 12px;
}
.side-game-box {
    display: none;
}
.game-main .game-comment {
    margin-bottom: 0;
}
.uk-margin-medium {
    margin-bottom: 20px;
    margin-top: 20px !important;
}
.game-main .game-comment .comment-item .comment-content {
    padding-left: 0;
}
.home-bg-m {
    display: block;
    overflow: hidden;
    width: 100%;
}
.home-bg-m video {
    width: 100%;
}
.home-bg {
    display: none;
}
.home-warp {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.home-warp>.uk-flex {
    display: block;
}
.navbar {
    display: none;
}
.navbar-m {
    display: flex;
}
.game-part {
    box-shadow: none;
    padding: 0px;
}
.game-main .item {
    border-bottom: 12px solid #f9f9f9;
}
.game-main .content {
    padding-left: 0;
    border-left: 0;
    margin: 20px 0;
}
.part-title {
    padding-left: 30px;
}
.part-title .title {
    font-size: 20px;
}
.game-show .uk-grid-small {
    margin-left: -6px;
}
.game-show .item {
    padding-left: 6px;
}
.game-show .item:first-child {
    display: none;
}
.game-show .item img {
    height: 190px;
    max-height: 190px;
}
.sidebar {
    width: auto;
    padding: 0;
}
.game-url-btn {
    display: block;
    background: var(--pm-c);
    color: #fff;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
}
.li-btn {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.li-btn a {
    flex: 1;
    display: block;
    padding: 12px;
    text-align: center;
    background: #ff9800;
    color: #fff;
    border-radius: 4px;
}
.category-news {
    padding: 15px;
}
.category-news .news-item .thumb {
    height: 80px;
    width: 100px;
    margin-right: 10px;
}
.category-news .news-item .desc {
    display: none;
}
.category-news .news-item .title {
    height: 45px;
    margin-bottom: 15px;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.category-news .news-item .title a {
    font-size: 15px;
}
.category .sidebar {
    padding: 15px;
}
.single-news {
    padding: 15px;
}
.single-news .news-header h1 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
}
.single-news .news-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.single-news .single-content p {
    text-indent: 1em;
    line-height: 26px;
    font-size: 14px;
}
.single-news .single-content h3 {
    margin: 15px 0;
    border-left: 3px solid var(--pm-c);
    background: #f5fff9;
    color: var(--pm-c);
    margin: 15px 0;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
}
p {
    margin: 0 0 15px 0;
}
*+p {
    margin-top: 15px;
}
.single-news .news-header .info {
    display: flex;
    justify-content: space-between;
}
.single-news .news-header .info span {
    margin: 0;
}
.single-news .single-content img {
    display: block;
    margin: 0 auto;
    max-height: 300px;
    width: auto;
    max-width: 100%;
}
.single .sidebar {
    padding: 15px;
}
}


/*pagination*/

.pagination {
    padding: 20px 10px;
    text-align: center;
    background: #fff;
    border-radius: 6px;
}

.pagination a {
    background-color: #fff;
    border-color: #f4f4f4;
    border-style: solid;
    border-width: 1px;
    color: #666;
    margin: 2px;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 4px;
    height: 36px;
    line-height: 36px;
    transition: all 0.2s ease 0s;
}

.pagination a:hover {
    background-color: #009688;
    border-color: #009688;
    border-style: solid;
    border-width: 1px;
    color: #fff;
}

.pagination a:active {
    border-color: #009688;
    border-style: solid;
    border-width: 1px;
    color: #000;
}

.pagination .thisclass {
    background-color: #009688;
    border-color: #009688;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-weight: bold;
    margin: 2px;
    padding: 5px 15px;
    border-radius: 4px;
}

.pagination b {
    background-color: #009688;
    border-color: #009688;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    margin: 2px;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 4px;
    height: 36px;
    line-height: 36px;
    transition: all 0.2s ease 0s;
}
.info-box-cdk{
    width: 100%;
    height: 200px;
}
.info-box-cdk ul{
    width: 100%;
    height: auto;
}
.info-box-cdk ul li{
    width: 100%;
    height: 50px;
    float: left;
    line-height: 50px;
}
.info-box-cdk ul li .d{
    width: 70%;
    float: left;
}
.info-box-cdk ul li .p{
    width: 30%;
    float: left;
}
.info-box-cdk ul li .p button{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: #FF9933;
    color: #fff;
    font-size: 14px;
}
.part-title .more-sc {
    width: auto;
    height: 40px;
    color: #fff;
    padding: 0 20px 0 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    background: #FF9933;
}
.comment-footer{
    padding-left: 51px;
    margin-top: 10px;
    padding-bottom: 20px;
}
.reply-praise{
    float: right;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}
.praise{
    background:#fff;
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 17px;
}
.praise:before{
    background: 50% / cover no-repeat;
    content: "";
    height: 16px;
    margin: 0 5px 0 0;
    width: 16px;
    background-image: url(../images/praise.png);
}
.dis-praise{
    background:#fff;
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 17px;
}
.dis-praise:before{
    background: 50% / cover no-repeat;
    content: "";
    height: 16px;
    margin: 0 5px 0 0;
    width: 16px;
    background-image: url(../images/praise.png);
    transform: rotate(180deg);
}
/*弹出框*/
@media (max-width: 768px) {
    .comment-section {
        width: 90%;
        margin: 10px auto;
        padding: 15px;
        border: 1px solid #e1e2e6;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .rating {
        font-size: 28px;
    }
    .ratingcomm {
        font-size: 16px;
        padding-top: 10px;
        margin-left: 15px;
    }
    .buttonAll {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        background: linear-gradient(135deg, #4CAF50, #66BB6A);
        box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
        margin-top: 10px;
    }
    .comment-tex {
        padding: 12px 16px 20px;
        margin-top: 20px;
    }
    .comment-tex span {
        font-size: 14px;
        margin-top: 5px;
    }
    h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }
    textarea {
        font-size: 14px;
        height: 150px;
    }
}
.comment-section {
   /* width: 750px;*/
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.ratingall{
    width: 100%;
    height: auto;
    float: left;
}
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    float: left;
    font-size: 30px;
    color: #ccc;
}
.rating input {
    display: none;
}
.ratingcomm{
    float: left;
    font-size: 20px;
    padding-top: 10px;
    margin-left: 10px;
}
.rating input:checked ~ label,
.rating input:hover ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #CC3300;
}
.form-group {
    width: 100%;
    margin-bottom: 15px;
    float: left;
}
textarea {
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: #333;
    display: block;
    font-size: 13px;
    height: 192px;
    line-height: 21px;
    outline: none;
    resize: none;
    width: 100%;
}
.buttonAll {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.comment-tex{
    background: #fff;
    border: 1px solid #e1e2e6;
    border-radius: 12px;
    box-sizing: border-box;
    flex: 1;
    margin: 30px auto 0;
    padding: 12px 16px 20px;
    position: relative;
}
.comment-tex span{
    float: right;
    font-size: 14px;
    color: #ccc;
}
/* 模态框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    /*background: linear-gradient(90deg, #6a11cb, #2575fc);*/
    background: #FF9933;
    padding: 25px;
    border-radius: 15px 15px 0 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.8rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    line-height: 1.8;
    color: #555;
}

.modal-footer {
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    margin-left: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #6a11cb;
    color: #6a11cb;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instructions {
    margin-top: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
}

.instructions h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.instructions ol {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.instructions code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}
@media (max-width: 768px) {

}