@charset "utf-8";

/* ============================================
   1. 基础重置
   ============================================ */

html {
    font-size: 100px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
    color: #333333;
}

* {
    box-sizing: border-box;
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd, hr, input, p {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
}

a, :before, :after {
    font-size: 16px;
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
    transition: all 0.5s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    border: none;
    transition: all 0.5s ease;
}

/* ============================================
   2. 页面布局
   ============================================ */

.page-wrap {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-wrap .container {
    width: 12.2rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ============================================
   3. 顶部区域
   ============================================ */

.top-header {
    width: 100%;
    height: 2rem;
    position: relative;
    overflow: hidden;
    background: url('../img/by.png') no-repeat left center;
    background-size: 100% 100%;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.2) 100%);
}

.top-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.top-header .logo-area {
    display: flex;
    align-items: center;
}

.top-header .logo-area a {
    display: flex;
    align-items: center;
}

.top-header .logo-area a img {
    width: auto;
    height: 0.76rem;
}

.top-header .logo-area .site-name {
    margin-left: 0.21rem;
    font-size: 0.40rem;
    font-weight: bold;
    color: #006CCB;
    letter-spacing: 0.02rem;
}

.top-header .search-area {
    margin-right: 0;
}

.top-header .search-area .search-box {
    display: flex;
    align-items: center;
    width: 2.71rem;
    height: 0.42rem;
    padding: 0 0.12rem 0 0.18rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.21rem;
}

.top-header .search-area .search-input {
    flex: 1;
    height: 100%;
    font-size: 0.12rem;
    color: #858585;
    background: transparent;
    border: none;
}

.top-header .search-area .search-input::placeholder {
    color: #999;
}

.top-header .search-area .search-btn {
    width: 0.3rem;
    height: 0.3rem;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066cc' width='24' height='24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ============================================
   4. 导航栏
   ============================================ */

.main-nav {
    width: 100%;
    height: 0.60rem;
    background: #0066cb;
}

.main-nav .container {
    height: 100%;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-left: 0;
}

.main-nav ul li {
    height: 100%;
    min-width: 1.7rem;
}

.main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.20rem;
    color: #fff;
    transition: all 0.3s ease;
}

.main-nav ul li.active a,
.main-nav ul li:hover a {
    color: #006CCB;
    background: #EBCE93;
}

/* ============================================
   5. 页脚
   ============================================ */

.footer {
    height: auto;
    margin-top: 0;
    padding: 0.3rem 0;
    background: #0066cc;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.8rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo a img {
    width: auto;
    height: 0.7rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.04rem;
}

.footer-info p {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.24rem;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

/* ============================================
   6. 移动端导航
   ============================================ */

.mobile-nav-btn {
    display: none;
    width: 30px;
    position: fixed;
    top: 35px;
    right: 10px;
    z-index: 9;
    padding-top: 0.04rem;
    cursor: pointer;
    transform: translateY(-50%);
}

.mobile-nav-btn b {
    display: block;
    height: 3px;
    margin-bottom: 5px;
    border-radius: 2px;
    background-color: #fff;
    user-select: none;
    transition: 0.3s;
}

.mobile-on .mobile-nav-btn b {
    display: none;
    width: 30px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
}

.mobile-on .mobile-nav-btn b:first-child {
    display: block;
    transform: rotate(45deg);
}

.mobile-on .mobile-nav-btn b:last-child {
    display: block !important;
    transform: rotate(-45deg);
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 999;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.98);
}

.mobile-on .mobile-nav-panel {
    display: block;
}

body.mobile-on {
    overflow: hidden;
}

.mobile-nav-panel ul {
    margin: 0;
    padding: 0.2rem 0.4rem;
    list-style: none;
    flex-direction: column;
}

.mobile-nav-panel ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-panel ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 46px;
    padding: 0;
    font-size: 16px;
    color: #333;
}

.mobile-nav-panel ul li.active a {
    font-weight: bold;
    color: #0066cc;
}

.mobile-nav-panel .mobile-search-box {
    padding: 0.2rem 0.4rem;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-panel .mobile-search-box .search-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 0.4rem;
    padding: 0 0.12rem 0 0.15rem;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.2rem;
}

.mobile-nav-panel .mobile-search-box .search-box .search-input {
    flex: 1;
    height: 100%;
    font-size: 0.14rem;
    color: #858585;
    background: transparent;
    border: none;
}

.mobile-nav-panel .mobile-search-box .search-box .search-input::placeholder {
    color: #999;
}

.mobile-nav-panel .mobile-search-box .search-box .search-btn {
    width: 0.3rem;
    height: 0.3rem;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066cc' width='24' height='24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ============================================
   7. 响应式
   ============================================ */

@media (max-width: 1300px) {
    .page-wrap .container {
        width: calc(100% - 7rem);
    }
}

@media (max-width: 800px) {
    /* 页面布局 */
    .page-wrap {
        padding-top: 70px;
    }

    .page-wrap .container {
        width: 100%;
        padding: 0 0.5rem;
    }

    /* 顶部区域 */
    .top-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 70px !important;
        padding: 0 !important;
        background: #0066cb;
    }

    .top-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 0.5rem;
    }

    .top-header .logo-area {
        flex: 1;
    }

    .top-header .logo-area a img {
        height: 0.5rem;
    }

    .top-header .logo-area .site-name {
        margin-left: 0.1rem;
        font-size: 0.2rem;
        color: #fff;
    }

    .top-header .search-area {
        display: none;
    }

    /* 导航栏 */
    .main-nav {
        display: none;
    }

    /* 移动端导航按钮 */
    .mobile-nav-btn {
        display: block !important;
        z-index: 100;
    }

    /* 页脚 */
    .footer {
        padding: 0.15rem 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 0.08rem;
    }

    .footer-logo a img {
        height: 0.4rem;
    }

    .footer-info p {
        font-size: 0.13rem;
        line-height: 0.2rem;
        white-space: normal;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .top-header {
        height: 0.7rem;
    }

    .top-header .logo-area a img {
        height: 0.28rem;
    }

    .top-header .logo-area .site-name {
        margin-left: 0.1rem;
        font-size: 0.14rem;
    }
}


.pageTips {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.pageTips .container {
  color: #fff;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 630px;
  margin-top: -160px;
  margin-left: 315px;
}
.pageTips .container a.close {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 1;
  left: auto;
  right: 20px;
  top: 20px;
  bottom: auto;
  background: url("../img/close.png") center no-repeat;
}
.pageTips .container .msg {
  font-size: 20px;
  line-height: 36px;
  padding-top: 30px;
}
.pageTips .container a {
  color: #fff;
  text-decoration: underline;
}