:root {
    --color-default: #ddd;
    --color-primary: #06e5f7;
    --color-bg: #000;
}

*{margin:0;padding:0;box-sizing:border-box;word-break:break-all}
body,input,textarea,select,button{font:14px/1.6 Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif,PingFang SC,Microsoft YaHei}
body{color:var(--color-default);background-color:var(--color-bg)}
h1,h2,h3,h4,h5,h6{font-size:100%}
table{border-collapse:collapse;border-spacing:0}
ul,ol{list-style:none}
i,em{font-style:normal}
img{border:0;vertical-align:middle}
a{text-decoration:none}

.flex{display:-webkit-flex;display:flex}
.vertical{-webkit-flex-direction:column;flex-direction:column}
.xcenter{-webkit-justify-content:center;justify-content:center}
.xend{-webkit-justify-content:flex-end;justify-content:flex-end}
.xjustify{-webkit-justify-content:space-between;justify-content:space-between}
.ycenter{-webkit-align-items:center;align-items:center}
.yend{-webkit-align-items:flex-end;align-items:flex-end}
.flex-1{-webkit-flex:1;flex:1}

.clearfix{zoom:1}
.clearfix:after{content:".";height:0;line-height:0;font-size:0;clear:both;display:block;visibility:hidden}

.auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
}
.layout-wrapper {
    overflow: hidden;
}
.layout-main {
    margin-top: 30px;
    position: relative;
}
.aside-menu {
    width: 230px;
    background-color: #2d3135;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 15px;
}
.aside-menu a {
    display: block;
    height: 56px;
    line-height: 56px;
    padding: 0 20px;
    font-size: 16px;
    color: var(--color-default);
    transition: all 0.3s;
}
.aside-menu a + a {
    border-top: 1px dashed #485058;
}
.aside-menu a.active, .aside-menu a:hover {
    color: var(--color-primary);
}
.main-content {
    min-height: 500px;
    margin-left: 250px;
    padding: 15px 20px;
    background-color: #2d3135;
    border-radius: 4px;
}
.main-content p {
    margin: 10px 0;
}

/* header */
.layout-header {
    height: 82px;
}
.header-fixed {
    width: 100%;
    height: 82px;
    background-color: var(--color-bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header-content {
    height: 100%;
}
.header-content .logo {
    display: block;
    min-width: 160px;
    width: 188px;
    height: 29px;
    background: url(../../img/pc/logo.png) no-repeat center / contain;
}
.header-content .header-nav {
    margin-left: 118px;
}
.header-content .header-nav a {
    display: block;
    min-width: 100px;
    height: 82px;
    line-height: 82px;
    padding: 0 10px;
    text-align: center;
    font-size: 16px;
    color: var(--color-default);
    transition: all 0.3s;
    position: relative;
}
.header-content .header-nav a + a {
    margin-left: 40px;
}
.header-content .header-nav a:before, .header-content .header-nav a:after {
    width: 0;
    height: 4px;
    content: "";
    position: absolute;
    bottom: 0;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: width .4s cubic-bezier(.175,.885,.32,1.275);
}
.header-content .header-nav a:before {
    left: calc(50% - 20px);
}
.header-content .header-nav a:after {
    left: calc(50% - 20px + 30px + 4px);
}
.header-content .header-nav a.active:before {
    width: 30px;
}
.header-content .header-nav a.active:after {
    width: 6px;
}
.header-content .header-nav a:hover, .header-content .header-nav a.active {
    color: #fff;
}
.header-content .download-btn {
    min-width: 123px;
    height: 36px;
    line-height: 34px;
    padding: 0 15px;
    text-align: center;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.header-content .download-btn i {
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url(../../img/pc/download.png) no-repeat 0 0;
}
.header-content .download-btn:hover {
    border-color: #bafaff;
    color: #bafaff;
}
.header-content .download-btn:hover i {
    background-position: -16px 0;
}

/* footer */
.layout-footer {
    padding-top: 50px;
    padding-bottom: 30px;
}
.follow-us h3 {
    line-height: 24px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}
.follow-us .media-list .item i {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.follow-us .media-list .item i.wx-icon {
    background-image: url(../../img/pc/wx.png);
}
.follow-us .media-list .item i.wb-icon {
    background-image: url(../../img/pc/wb.png);
}
.follow-us .media-list .item i.dy-icon {
    background-image: url(../../img/pc/dy.png);
}
.follow-us .media-list .item i.bz-icon {
    background-image: url(../../img/pc/bz.png);
}
.follow-us .media-list .item p {
    margin-top: 10px;
    text-align: center;
}
.follow-us .media-list .item + .item {
    margin-left: 20px;
}
.footer-info {
    margin-left: 60px;
}
.footer-info .footer-nav {
    margin-top: 15px;
}
.footer-info .footer-nav a {
    color: var(--color-default);
}
.footer-info .footer-nav a:hover {
    text-decoration: underline;
}
.footer-info .footer-nav span {
    margin: 0 10px;
}
.footer-info .beian {
    margin-top: 20px;
    font-size: 12px;
}
.online-service {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
}
.online-service h3 {
    line-height: 24px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}
.online-service h3 .kf-icon {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    background: url(../../img/pc/kf.png) no-repeat center / contain;
}
.online-service p + p {
    margin-top: 15px;
}
.friend-links {
    margin-top: 20px;
}
.friend-links a {
    color: #666;
}
.friend-links a + a {
    margin-left: 10px;
}
.friend-links a:hover {
    color: #fff;
}

/* index */
.index-banner {
    width: 100%;
    height: 880px;
    background: url(../../img/pc/banner.jpg) no-repeat center / cover;
    position: relative;
}
.banner-content {
    height: 100%;
    padding-top: 150px;
}
.banner-content .tip-1 {
    width: 409px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--color-primary);
    background: url(../../img/pc/rectangle.svg) no-repeat center / contain;
}
.banner-content .tip-2 {
    font-size: 128px;
    color: #fff;
}
.banner-content .tip-2 strong {
    font-weight: 600;
    color: #a6ff01;
}
.banner-content .tip-3 {
    font-size: 40px;
}
.banner-content .download-btn {
    width: 390px;
    height: 90px;
    line-height: 90px;
    margin-top: 75px;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #170c02;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.banner-content .download-btn i {
    display: block;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background: url(../../img/pc/windows.png) no-repeat center / contain;
}
.banner-content .download-btn:hover {
    background-color: #bafaff;
}
.banner-feature {
    width: 100%;
    height: 90px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #000 0%, #051012 15%, #00ecffb8 60%, #021416 85%, #000 100%);
}
.banner-feature .feature-list .item {
    height: 90px;
    font-size: 32px;
}
.banner-feature .feature-list .item i {
    display: block;
    width: 48px;
    height: 48px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.banner-feature .feature-list .item i.game-icon {
    background-image: url(../../img/pc/game.png);
}
.banner-feature .feature-list .item i.wifi-icon {
    background-image: url(../../img/pc/wifi.png);
}
.banner-feature .feature-list .item i.clock-icon {
    background-image: url(../../img/pc/clock.png);
}
.banner-feature .feature-list .line {
    width: 2px;
    height: 36px;
    background-color: #65bece;
}

/* inner page */
.inner-title {
    display: inline-block;
    line-height: 32px;
    padding-bottom: 6px;
    font-size: 24px;
    font-weight: 500;
    position: relative;
}
.inner-title:before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(to right,#06e5f7,#151c23);
    position: absolute;
    left: 0;
    bottom: 0;
}
.pagination {
    margin-top: 35px;
    text-align: center;
}
.pagination li {
    display: inline-block;
}
.pagination li + li {
    margin-left: 10px;
}
.pagination li a, .pagination li span {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    text-align: center;
    color: var(--color-default);
    background-color: #2d3135;
    border-radius: 2px;
    transition: all 0.3s;
}
.pagination li.active span, .pagination li a:hover {
    background-color: var(--color-primary);
    color: #170c02;
}
.pagination li.disabled span {
    background-color: #2d3135;
    color: #999;
    cursor: not-allowed;
}

/* news */
.news-list {
    margin-top: 30px;
}
.news-list .item {
    padding: 20px 0;
    border-bottom: 1px dashed #2d3135;
}
.news-list .item:last-child {
    border-bottom: none;
}
.news-list .item a {
    color: var(--color-default);
}
.news-list .item img {
    width: 300px;
    height: 147px;
    object-fit: cover;
}
.news-list .item .info {
    margin-left: 20px;
}
.news-list .item .info h3 {
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}
.news-list .item .info p {
    line-height: 24px;
    margin-top: 10px;
    color: #aaa;
}
.news-list .item .info p.time {
    font-size: 12px;
}
.news-list .item a:hover .info h3 {
    color: #fff;
}

/* news detail */
.article-title {
    line-height: 32px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}
.article-info {
    margin-top: 10px;
    text-align: center;
    color: #aaa;
}
.article-info span {
    font-size: 12px;
}
.article-info span + span {
    margin-left: 20px;
}
.article-content {
    margin-top: 20px;
    line-height: 28px;
}
.article-content p {
    margin: 10px 0;
    font-size: 16px;
}

/* help */
.question-list {
    margin-top: 30px;
}
.question-list .item {
    float: left;
    width: 48%;
    padding: 20px 0;
    border-bottom: 1px dashed #2d3135;
}
.question-list .item:nth-child(2n) {
    margin-left: 4%;
}
.question-list .item a {
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-default);
    transition: all 0.3s;
}
.question-list .item a:hover {
    color: #fff;
}
.vk_phone_support {
    width: 180px;
    float: right;
    color: white;
    height: 34px;
    padding: 0px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 4px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s;
    text-decoration: unset;
    margin-bottom: 20px;
    margin-left: 15px;
}
.vk_phone_support span a{
    line-height: 34px;
}
.vk_phone_support span a img{
    margin-bottom: 3px;
}
.radius-left, .radius-right {
    width: 28px;
    height: 28px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 7px 0px 7px 6px;
    position: absolute;
    transition: all 0.3s !important;
}
.radius-left {
    transform: rotate(45deg);
    left: -9px;
    top: 1px;
    box-sizing: border-box;
}
.radius-right {
    transform: rotate(-135deg);
    right: -9px;
    bottom: 1px;
    box-sizing: border-box;
}
