* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

ul, ol {
    list-style: none
}

a {
    text-decoration: none
}

html, body {
    width: 100%;
    height: 100%
}

body {
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji
}

@font-face {
    font-family: "iconfont";
    src: url("../font/iconfont.eot");
    src: url("../font/iconfont.eot?#iefix") format("embedded-opentype"), url("../font/iconfont.woff") format("woff"), url("../font/iconfont.ttf") format("truetype"), url("../font/iconfont.svg#iconfont") format("svg")
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: .2px;
    -moz-osx-font-smoothing: grayscale
}

button {
    border: none;
    outline: none
}

.container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden
}

@media screen and (max-width: 1024px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding-left: 10px;
        padding-right: 10px
    }
}

input[type=search]::-webkit-search-cancel-button {
    display: none;
    autocomplete: off
}

@media screen and (max-width: 767px) {
    header {
        box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2)
    }
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px
}

header .container .menu_btn {
    visibility: hidden
}

@media screen and (max-width: 767px) {
    header .container .menu_btn {
        visibility: visible;
        color: #666
    }

    header .container .menu_btn .iconfont {
        font-size: 26px
    }
}

.nav_bar {
    background-color: #0093ff;
    position: relative
}

.nav_bar::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #008be7;
    position: absolute;
    left: 0;
    bottom: 0
}

.nav_bar .container {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden
}

.nav_bar .container a {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative
}

.nav_bar .container a + a {
    margin-left: 100px
}

.nav_bar .container a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: calc(100% + 20px);
    left: -10px;
    height: 4px;
    z-index: 2;
    transition: all .3s
}

.nav_bar .container a:hover::after, .nav_bar .container a.active::after {
    background-color: #03c
}

.nav_bar > .close {
    display: none
}

@media screen and (max-width: 767px) {
    .nav_bar {
        background-color: rgba(0, 0, 0, .45);
        position: fixed;
        width: auto;
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: all .3s;
        z-index: 99
    }

    .nav_bar.active {
        transform: translateX(0)
    }

    .nav_bar::after {
        display: none
    }

    .nav_bar .container {
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 60px 0
    }

    .nav_bar .container a {
        height: auto;
        position: relative
    }

    .nav_bar .container a + a {
        margin-left: 0;
        margin-top: 30px
    }

    .nav_bar .container a::after {
        display: none
    }

    .nav_bar > .close {
        display: block;
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%)
    }

    .nav_bar > .close .iconfont {
        font-size: 26px;
        color: #fff
    }
}

.main_container {
    margin-top: 20px
}

@media screen and (max-width: 767px) {
    .main_container {
        margin-top: 0;
        margin-bottom: 10px
    }
}

.main_container h1 {
    font-weight: 600;
    font-size: 32px;
    color: #333;
    line-height: 2em;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.main_container .main_container_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.main_container .main_container_title h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333
}

@media screen and (max-width: 767px) {
    .main_container .main_container_title {
        margin-top: 8px
    }

    .main_container .main_container_title h2 {
        font-size: 18px
    }
}

.main_container .characters_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.main_container .characters_list li {
    width: calc((100% - 60px) / 6);
    margin-right: 12px
}

.main_container .characters_list li:nth-child(6n) {
    margin-right: 0
}

.main_container .characters_list li:nth-child(n+7) {
    margin-top: 12px
}

.main_container .characters_list li a {
    display: flex;
    align-items: center;
    flex-direction: column
}

.main_container .characters_list li a .thum {
    width: 100%;
    height: 0;
    padding-bottom: 110%;
    overflow: hidden;
    position: relative
}

.main_container .characters_list li a .thum img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s
}

.main_container .characters_list li a h3 {
    height: 70px;
    background-color: #0093ff;
    width: 100%;
    padding: 15px 10px 0 10px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    border-top: 4px solid #fd0000;
    transition: all 1s
}

.main_container .characters_list li a:hover .thum img {
    transform: scale(1.1)
}

.main_container .characters_list li a:hover h3 {
    background-color: #fd0000
}

@media screen and (max-width: 767px) {
    .main_container .characters_list li {
        width: calc((100% - 16px) / 3);
        margin-right: 8px
    }

    .main_container .characters_list li:nth-child(3n) {
        margin-right: 0
    }

    .main_container .characters_list li:nth-child(n+4) {
        margin-top: 8px
    }

    .main_container .characters_list li a h3 {
        border-top-width: 2px;
        height: 36px;
        padding: 0 10px;
        line-height: 34px
    }
}

.main_container .games_list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap
}

.main_container .games_list > li {
    width: calc((100% - 60px) / 6);
    margin-right: 12px
}

.main_container .games_list > li:nth-child(6n) {
    margin-right: 0
}

.main_container .games_list > li:nth-child(n+7) {
    margin-top: 12px
}

.main_container .games_list > li a {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    border: 1px solid #9cf;
    transition: all 1s
}

@media screen and (max-width: 850px) {
    .main_container .games_list > li a {
        padding: 15px 8px
    }
}

.main_container .games_list > li a .thum {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative
}

.main_container .games_list > li a .thum img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s
}

.main_container .games_list > li a dl {
    width: 100%;
    margin-top: 10px;
    flex-shrink: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.main_container .games_list > li a dl dt {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.main_container .games_list > li a dl dd:nth-child(2) {
    font-size: 12px;
    color: #999;
    flex-shrink: 1;
    flex-grow: 1
}

.main_container .games_list > li a dl dd:nth-child(3) .layui-rate li i.layui-icon {
    font-size: 14px;
    margin-right: 3px
}

.main_container .games_list > li a:hover {
    background-color: #cff;
    border-color: #0093ff
}

.main_container .games_list > li a:hover .thum img {
    transform: scale(1.1)
}

.main_container .games_list > li a:hover dl dt {
    color: #0093ff
}

@media screen and (max-width: 767px) {
    .main_container .games_list > li {
        width: calc((100% - 16px) / 3);
        margin-right: 8px
    }

    .main_container .games_list > li:nth-child(3n) {
        margin-right: 0
    }

    .main_container .games_list > li:nth-child(n+4) {
        margin-top: 8px
    }

    .main_container .games_list > li a {
        padding: 8px
    }

    .main_container .games_list > li a dl dd:nth-child(3) .layui-rate {
        padding: 5px 0
    }

    .main_container .games_list > li a dl dd:nth-child(3) .layui-rate li i.layui-icon {
        font-size: 10px;
        margin-right: 3px
    }
}

.main_container .product_list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap
}

.main_container .product_list > li {
    width: calc((100% - 60px) / 6);
    margin-right: 12px
}

.main_container .product_list > li:nth-child(6n) {
    margin-right: 0
}

.main_container .product_list > li:nth-child(n+7) {
    margin-top: 12px
}

.main_container .product_list > li a {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #9cf;
    transition: all 1s;
    padding-top: 15px;
    height: 100%
}

.main_container .product_list > li a .thum {
    width: calc(100% - 30px);
    height: 0;
    padding-bottom: 85%;
    overflow: hidden;
    position: relative
}

.main_container .product_list > li a .thum img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.main_container .product_list > li a dl {
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 15px 15px 0;
    transition: all 1s
}

.main_container .product_list > li a dl dt {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.main_container .product_list > li a dl dd:nth-child(2) {
    font-size: 12px;
    color: #999;
    flex-shrink: 1;
    flex-grow: 1
}

.main_container .product_list > li a dl dd:nth-child(3) .layui-rate li i.layui-icon {
    font-size: 14px;
    margin-right: 3px
}

.main_container .product_list > li a:hover {
    border-color: #0093ff
}

.main_container .product_list > li a:hover dl {
    background-color: #cff
}

.main_container .product_list > li a:hover dl dt {
    color: #0093ff
}

@media screen and (max-width: 767px) {
    .main_container .product_list > li {
        width: calc((100% - 16px) / 3);
        margin-right: 8px
    }

    .main_container .product_list > li:nth-child(3n) {
        margin-right: 0
    }

    .main_container .product_list > li:nth-child(n+4) {
        margin-top: 8px
    }

    .main_container .product_list > li a {
        padding-top: 8px
    }

    .main_container .product_list > li a .thum {
        width: calc(100% - 20px)
    }

    .main_container .product_list > li a dl {
        padding: 10px 5px 0
    }

    .main_container .product_list > li a dl dd:nth-child(3) .layui-rate {
        padding: 5px 0
    }

    .main_container .product_list > li a dl dd:nth-child(3) .layui-rate li i.layui-icon {
        font-size: 10px;
        margin-right: 3px
    }
}

.main_container .media_list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap
}

.main_container .media_list > li {
    width: calc(25% - 9px);
    margin-right: 12px
}

.main_container .media_list > li:nth-child(4n) {
    margin-right: 0
}

.main_container .media_list > li:nth-child(n+5) {
    margin-top: 20px
}

.main_container .media_list > li a {
    display: flex;
    flex-direction: column
}

.main_container .media_list > li a .thum {
    width: 100%;
    height: 0;
    padding-bottom: 55%;
    overflow: hidden;
    position: relative
}

.main_container .media_list > li a .thum img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

.main_container .media_list > li a dl {
    margin-top: 5px;
    padding-right: 15px
}

.main_container .media_list > li a dl dt {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s
}

.main_container .media_list > li a dl dd {
    font-size: 12px;
    color: #999
}

.main_container .media_list > li a:hover dl dt {
    color: #0093ff
}

@media screen and (max-width: 767px) {
    .main_container .media_list > li {
        width: calc(50% - 5px)
    }

    .main_container .media_list > li:nth-child(odd) {
        margin-right: 10px
    }

    .main_container .media_list > li:nth-child(even) {
        margin-right: 0px
    }

    .main_container .media_list > li:nth-child(n+3) {
        margin-top: 10px
    }
}

.main_container .walk {
    position: relative;
    border-radius: 2px;
    margin-bottom: 20px
}

.main_container .walk .preview .swiper-wrapper .swiper-slide {
    width: auto;
    height: 320px
}

@media screen and (max-width: 767px) {
    .main_container .walk .preview .swiper-wrapper .swiper-slide {
        height: 220px
    }

    .main_container .walk .preview .swiper-wrapper .swiper-slide img {
        /*width: 100%;*/
        object-fit: cover;
        object-position: center
    }
}

.main_container .walk .preview .swiper-wrapper .swiper-slide img {
    height: 100%
}
.main_container .walk .preview .swiper-wrapper  {
    display: flex;
}
.swiper-button-prev{
    position: absolute;
    top: 37%;
    left: 45px;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    color: #fff;
}
.swiper-button-next{
    position: absolute;
    top: 37%;
    right: 47px;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    color: #fff;
}

.main_container .walk .maskB {
    position: fixed !important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .9)
}

.main_container .walk .maskB .swiper-slide {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.main_container .walk .maskB .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.main_container .walk .swiper-button-white {
    background-color: rgba(0, 0, 0, .4);
    width: 40px;
    height: 60px;
    cursor: pointer;
    background-size: 18px 44px
}

.main_container .walk .swiper-button-white:hover {
    background-color: rgba(0, 0, 0, .6)
}

.main_container .desc_box {
    border: 1px solid #9cf;
    padding: 20px
}

.main_container .desc_box p {
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.5em !important
}

.main_container .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.main_container .btn_box a {
    border: 1px solid #3171ff;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #3171ff;
    padding: 0 40px;
    border-radius: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 1s
}

.main_container .btn_box a .iconfont {
    margin-right: 5px
}

.main_container .btn_box a + a {
    margin-left: 40px
}

.main_container .btn_box a:hover {
    background-color: #3171ff;
    color: #fff
}

@media screen and (max-width: 767px) {
    .main_container .btn_box a {
        height: 32px;
        line-height: 32px;
        padding: 0 15px;
        margin-bottom: 10px
    }

    .main_container .btn_box a + a {
        margin-left: 20px
    }
}

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

.main_container .comment_box #comment {
    width: calc(100% - 315px);
    padding: 20px;
    border: 1px solid #e6e5e8
}

.main_container .comment_box #comment form .input_btn {
    display: flex;
    align-items: center
}

.main_container .comment_box #comment form .input_btn input {
    width: 300px;
    margin-right: 15px
}

.main_container .comment_box #comment form .input_btn .layui-btn {
    background-color: #0093ff
}

.main_container .comment_box #comment form textarea {
    resize: none
}

.main_container .comment_box #comment .comment_list {
    margin-bottom: 30px
}

.main_container .comment_box #comment .comment_list > li {
    border-bottom: 1px solid #e6e5e8;
    padding: 20px 0
}

.main_container .comment_box #comment .comment_list > li dl dt {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main_container .comment_box #comment .comment_list > li dl dt .c_t_left {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666
}

.main_container .comment_box #comment .comment_list > li dl dt .c_t_left h2 {
    color: #333;
    font-weight: 500;
    margin: 0 5px
}

.main_container .comment_box #comment .comment_list > li dl dt .c_t_left time {
    font-size: 12px;
    color: #999
}

.main_container .comment_box #comment .comment_list > li dl dt .right {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    cursor: pointer
}

.main_container .comment_box #comment .comment_list > li dl dt .right .iconfont {
    margin-right: 3px
}

.main_container .comment_box #comment .comment_list > li dl dt .right.active {
    color: #f01
}

.main_container .comment_box #comment .comment_list > li dl dd {
    font-size: 12px;
    color: #666;
    margin-top: 5px
}

.main_container .comment_box #comment .pagination {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.main_container .comment_box #comment .pagination li {
    width: 30px;
    height: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .05)
}

.main_container .comment_box #comment .pagination li + li {
    margin-left: 6px
}

.main_container .comment_box #comment .pagination li > a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.main_container .comment_box #comment .pagination li.active, .main_container .comment_box #comment .pagination li:hover {
    background-color: #0093ff;
    color: #fff
}

.main_container .comment_box #comment .pagination li.active > a, .main_container .comment_box #comment .pagination li:hover > a {
    color: #fff
}

.main_container .comment_box #comment .pagination li.disabled {
    color: #d8d8d8
}

.main_container .comment_box #comment .pagination li.disabled:hover {
    background-color: #fff;
    color: #d8d8d8;
    cursor: not-allowed
}

@media screen and (max-width: 767px) {
    .main_container .comment_box #comment {
        width: 100%
    }

    .main_container .comment_box .ad {
        display: none
    }
}

.recommend_games {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px
}

@media screen and (max-width: 768px) {
    .recommend_games {
        margin-top: 10px
    }
}

.recommend_games li {
    width: calc(10% - 9px);
    margin-right: 10px
}

.recommend_games li:nth-child(10) {
    margin-right: 0
}

.recommend_games li a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.recommend_games li a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s
}

.recommend_games li a:hover img {
    transform: scale(1.2)
}

@media screen and (max-width: 768px) {
    .recommend_games li {
        width: calc(25% - 7.5px)
    }

    .recommend_games li:nth-child(4) {
        margin-right: 0
    }

    .recommend_games li:nth-child(n+5) {
        display: none
    }
}

.detail_info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.detail_info .info_main {
    width: calc(100% - 310px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #9cf;
    padding: 10px 18px
}

.detail_info .info_main .info_main_container {
    width: calc(100% - 350px)
}

.detail_info .info_main .info_main_container .top_info {
    display: flex;
    align-items: stretch
}

.detail_info .info_main .info_main_container .top_info .thum {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 15px
}

.detail_info .info_main .info_main_container .top_info .thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.detail_info .info_main .info_main_container .top_info dl {
    width: calc(100% - 115px);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.detail_info .info_main .info_main_container .top_info dl dt {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.detail_info .info_main .info_main_container .top_info dl dd .layui-rate li .layui-icon {
    font-size: 20px
}

.detail_info .info_main .info_main_container .bottom_info {
    margin-top: 15px
}

.detail_info .info_main .info_main_container .bottom_info li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666
}

.detail_info .info_main .info_main_container .bottom_info li + li {
    margin-top: 8px
}

.detail_info .info_main .info_main_container .bottom_info li span {
    color: #333;
    margin-right: 5px;
    font-weight: 600
}

.detail_info .info_main .info_main_container .bottom_info li.price {
    color: red
}

.detail_info .info_main .info_main_container .bottom_info li .tags {
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 26px;
    overflow: hidden
}

.detail_info .info_main .info_main_container .bottom_info li .tags a {
    background-color: #eef3f6;
    height: 26px;
    border-radius: 14px;
    line-height: 26px;
    padding: 0 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    transition: all 1s
}

.detail_info .info_main .info_main_container .bottom_info li .tags a + a {
    margin-left: 10px
}

.detail_info .info_main .info_main_container .bottom_info li .tags a:hover {
    background-color: #0093ff;
    color: #fff
}

.detail_info .info_main .info_main_container .bottom_info li .iconfont {
    margin-left: 10px
}

.detail_info .info_main .adbox {
    display: flex;
    align-items: center;
    flex-direction: column
}

.detail_info .info_main .adbox > p {
    font-size: 10px;
    color: #999;
    margin-bottom: 5px
}

@media screen and (max-width: 1200px) {
    .detail_info .info_main {
        width: 100%;
        padding: 5px 5px 15px;
        flex-direction: column-reverse
    }

    .detail_info .info_main .info_main_container {
        width: 100%;
        margin-top: 15px
    }
}

.detail_info .info_aside {
    width: 300px;
    height: 320px;
    overflow: hidden
}

@media screen and (max-width: 1200px) {
    .detail_info .info_aside {
        display: none
    }
}

.detail_info .info_aside img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

.pagination {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px
}

.pagination li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ececec
}

.pagination li + li {
    margin-left: 6px
}

.pagination li:first-child, .pagination li:last-child {
    width: 70px
}

.pagination li > a {
    width: 100%;
    height: 100%;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination li.active, .pagination li:hover {
    background-color: #0093ff;
    color: #fff
}

.pagination li.active > a, .pagination li:hover > a {
    color: #fff
}

.pagination li.disabled {
    color: #d8d8d8
}

.pagination li.disabled:hover {
    background-color: #fff;
    color: #d8d8d8;
    cursor: not-allowed
}

.charcter_detail {
    background-color: rgba(255, 204, 51, .8);
    margin-top: 20px;
    display: flex;
    align-items: stretch;
    padding: 40px 20px
}

.charcter_detail dl {
    width: 40%
}

.charcter_detail dl dt {
    font-size: 30px;
    color: #333;
    font-weight: 600;
    margin-bottom: 50px
}

.charcter_detail dl dd:nth-child(2) {
    font-size: 30px;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px
}

.charcter_detail dl dd:nth-child(3) {
    font-size: 14px;
    color: #333
}

.charcter_detail .thum {
    margin-left: 150px;
    display: flex;
    align-items: center;
    justify-content: center
}

.charcter_detail .thum img {
    height: 350px
}

@media screen and (max-width: 767px) {
    .charcter_detail {
        margin-top: 10px;
        padding: 20px;
        margin-bottom: 15px
    }

    .charcter_detail .thum {
        display: none
    }

    .charcter_detail dl {
        width: 100%
    }

    .charcter_detail dl dt {
        margin-bottom: 20px
    }

    .charcter_detail dl dd:nth-child(2) {
        margin-bottom: 15px
    }
}

footer {
    margin-top: 40px;
    background-color: #31afff;
    padding: 20px 0
}

footer .container h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px
}

footer .container p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px
}

footer .container p a {
    color: #fff
}

footer .container nav {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end
}

footer .container nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    text-transform: capitalize
}

footer .container nav a + a {
    margin-left: 30px
}

footer .container nav a:hover {
    text-decoration: underline
}

.no_res {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: calc(100vh - 357px)
}

.no_res h1 {
    font-size: 26px;
    color: #333;
    font-weight: 800
}

.no_res p {
    font-size: 18px;
    color: #666;
    margin: 20px auto
}

.no_res a {
    height: 40px;
    line-height: 38px;
    color: #0093ff;
    font-size: 16px;
    padding: 0 20px;
    border: 1px solid #0093ff;
    border-radius: 10px;
    transition: all 1s
}

.no_res a:hover {
    color: #fff;
    background-color: #0093ff;
    border-radius: 0
}

.primary_main {
    padding-top: 20px
}

.primary_main .crumbs {
    color: #96a0ab;
    font-size: 1.1em;
    margin-bottom: 20px
}

.primary_main .crumbs a {
    color: #0093ff
}

.primary_main .crumbs a:hover {
    text-decoration: underline
}

.primary_main h2 {
    color: #0093ff;
    font-size: 1.2em;
    margin-bottom: 15px
}

.primary_main .mainBox {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px
}

.primary_main .mainBox h3 {
    font-size: 1.1em;
    color: #0093ff;
    margin-bottom: 15px
}

.primary_main .mainBox p {
    font-size: .9em;
    color: #516375;
    margin-bottom: 15px;
    line-height: 1.6em
}

#search_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    padding: 20px;
    z-index: 99;
    display: none
}

#search_mask.active {
    display: block
}

#search_mask form {
    position: relative
}

#search_mask form input[type=search] {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #0093ff;
    line-height: 3em;
    text-indent: 1em
}

#search_mask form > a {
    position: absolute;
    right: 10px;
    color: #666;
    font-size: 20px;
    top: 5px
}

#search_mask .recommend_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px
}

#search_mask .recommend_list li {
    margin-right: 10px;
    margin-bottom: 10px
}

#search_mask .recommend_list li a {
    display: flex;
    align-items: center;
    height: 30px;
    background-color: #f5f5f5;
    padding: 0 10px;
    font-size: 12px;
    color: #666;
    border-radius: 3px;
    transition: all .3s
}

#search_mask .recommend_list li a:hover {
    color: #fff;
    background-color: #0093ff
}

/*# sourceMappingURL=main.css.map */
