:root {
    --bg: #EAE8E2;
    --text: #222222;
    --card: #2b2b2b;
    --muted: #a0a0a0;
    --accent: #b22222;
}

* { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
    margin: 0;
    background: var(--bg);
    min-height: 100vh;
}

input {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    background-color: transparent;
    font-size: inherit;
}

ul { margin: 0; padding: 0; }

ul li {
    list-style: none;
}

.wws-home {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wws-top-railing {
    height: 50px;
    background-color: #000000;
}

.wws-railing-main {
    width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.wws-railing-main-title {
    display: flex;
    align-items: center;
    height: 50px;
}
.wws-railing-main-title img {
    width: 100%;
    height: 100%;
}

.wws-railing-main-search-box {
    width: 188px;
    height: 34px;
    position: relative;
}

.wws-railing-main-search-input {
    width: 100%;
    height: 100%;
    font-size: 12px;
    padding: 0 20px;
    color: #fff;
    background: #272727;
    border-radius: 17px;
}

.wws-railing-main-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    cursor: pointer;
    background: url("../../assess/img/search.png") no-repeat;
    background-size: 100% 100%;
}

.wws-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================== Header ===================== */
header {
    /*padding: 18px 0;*/
    margin-top: 15px;
}

/* ===================== Nav ===================== */
nav {
    display: flex;
    gap: 50px;
    align-items: center;
}

.wws-nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #999999;
    font-weight: bold;
    cursor: pointer;
    padding: 18px 13px;
    border-bottom: 4px solid transparent;
}

.wws-nav-link.wws-active {
    color: var(--text);
    font-size: 18px;
    border-bottom: 4px solid var(--text);
}

.wws-nav-link:hover {
    color: var(--text);
    transition: all 0.3s;
}

.wws-header-bottom {
    width: 100%;
    height: 2px;
    background: #C9C9C9;
}

/* ===================== Hero ===================== */
.wws-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.wws-banner {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.wws-banner .wws-swiper-container{
    height: 100%;
}

.wws-banner .wws-swiper-container .wws-swiper-wrapper {
    display: flex;
    height: 100%;
}

.wws-banner .wws-swiper-container .wws-swiper-wrapper .wws-swiper-slide {
    height: 100%;
}

.wws-banner img {
    width: 100%;
    height: 100%;
    display: block;
}

.wws-recommend {
    height: 100%;
    overflow: hidden;
}

.wws-recommend .wws-recommend-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 36px;
    border-bottom: 2px solid #626262;
    margin-bottom: 21px;
}

.wws-recommend-title .wws-title {
    color: var(--text);
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
    border-bottom: 2px solid var(--text);
}

.wws-recommend-title .wws-more {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.wws-recommend-title .wws-right-logo {
    display: none;
}

.wws-recommend-item {
    margin-bottom: 11px;
    padding-bottom: 10px;
    border-bottom: 1px solid #C9C9C9;
    display: flex;
    align-items: center;
    height: 126px;
}

.wws-recommend-item-time {
    width: 60px;
    height: 106px;
    background: url("../../assess/img/recommend-time.png") no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    line-height: 23px;
    user-select: none;
}

.wws-recommend-item-time .wws-day {
    font-size: 24px;
}

.wws-recommend-item-time .wws-date {
    font-size: 12px;
}

.wws-recommend-item-main {
    height: 100%;
    margin-left: 8px;
    flex: 1;
}

.wws-recommend-item:last-child {
    margin-bottom: 0;
}

.wws-recommend .wws-recommend-item .wws-recommend-item-main .wws-title {
    font-weight: bold;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    line-height: 24px;
}

.wws-recommend .wws-recommend-item .wws-recommend-item-main .wws-excerpt {
    font-size: 12px;
    line-height: 18px;
    color: var(--muted);
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wws-recommend .wws-recommend-item .wws-recommend-item-main .wws-details {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    line-height: 18px;
    margin-top: 10px;
    cursor: pointer;
}

/* ===================== Sections ===================== */
.wws-sections-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 0 24px;
    margin-bottom: 40px;
}

.wws-sections-grid .wws-section-block {
    margin-top: 40px;
}

.wws-sections-grid .wws-section-block-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wws-sections-grid .wws-section-block-title-title {
    font-weight: bold;
    font-size: 24px;
    color: var(--text);
    margin: 0 9px;
}

 .wws-section-block-title-logo {
    width: 23px;
    height: 15px;
    background: url("../../assess/img/selection-title-logo.png") no-repeat;
    background-size: 100% 100%;
}

.wws-section-block-main-1 {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 0 24px;
    /*height: 267px;*/
    margin-top: 24px;
}

.wws-section-block-main-1 .wws-section-block-main-picture {
    margin-top: 12px;
    background-color: #E4E4E4;
    box-shadow: 0px 1px 18px 1px rgba(190,190,190,0.22);
}

.wws-section-block-main-1 .wws-section-block-main-picture-main {
    height: 194px;
    display: flex;
    align-items: center;
    padding: 17px 12px 17px 14px;
    box-sizing: border-box;
}

.wws-section-block-main-1 .wws-picture-top-img {
    width: 104px;
    height: 158px;
}

.wws-section-block-main-1 .wws-picture-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wws-section-block-main-1 .wws-picture-top-desc {
    height: 100%;
    margin-left: 19px;
    flex: 1;
}

.wws-section-block-main-1 .wws-picture-top-desc-title {
    font-weight: bold;
    font-size: 20px;
    color: var(--text);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wws-section-block-main-1 .wws-picture-top-desc-date {
    font-size: 14px;
    color: #A08D6F;
    line-height: 17px;
    margin-top: 4px;
}

.wws-section-block-main-1 .wws-picture-top-desc-desc {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 24px;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wws-section-block-main-1 .wws-section-block-main-picture-check {
    height: 73px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
}

.wws-section-block-main-1 .wws-picture-check-text {
    font-weight: bold;
    font-size: 18px;
    color: #C4B9A7;
    line-height: 24px;
}

.wws-picture-check-picture-top,
.wws-picture-check-picture-right {
    width: 27px;
    height: 27px;
    background: url("../../assess/img/xiangyou.png") no-repeat;
    background-size: 100% 100%;

}
.wws-picture-check-picture-right {
    margin-left: 15px;
}

.wws-section-block-main-1 .wws-section-block-main-list {
    height: 100%;
    margin: 0;
}

.wws-section-block-main-1 .wws-main-list-item {
    height: 40px;
    border-bottom: 1px solid #C9C9C9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-section-block-main-1 .wws-item-headline {
    display: flex;
    align-items: center;
    height: 100%;
}

.wws-section-block-main-1 .wws-headline-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--text);
    border-radius: 50%;
}

.wws-section-block-main-1 .wws-headline-text {
    flex: 1;
    color: var(--text);
    font-size: 14px;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.wws-section-block-main-1 .wws-item-date {
    white-space: nowrap;
    font-size: 12px;
    color: #999999;
}

.wws-section-block-main-2 {
    margin-top: 34px;
}

.wws-section-block-main-2 .wws-section-block-main-picture {
    width: 100%;
    background-color: #E4E4E4;
    display: grid;
    grid-template-columns: 7fr 1fr;
}

.wws-section-block-main-2 .wws-section-block-main-picture-main {
    padding: 18px 14px 14px 14px;
    box-sizing: border-box;
    flex: 1;
    height: 100%;
    display: flex;
}

.wws-section-block-main-2 .wws-picture-top-img {
    width: 80px;
    height: 100%;
}

.wws-section-block-main-1,
.wws-section-block-main-2  .wws-picture-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wws-section-block-main-2 .wws-picture-top-desc {
    margin-left: 10px;
    flex: 1;
}

.wws-section-block-main-2 .wws-picture-top-desc-title {
    font-weight: bold;
    font-size: 20px;
    color: var(--text);
}

.wws-section-block-main-2 .wws-picture-top-desc-date {
    font-weight: 500;
    font-size: 14px;
    color: #A08D6F;
    margin-top: 5px;
}

.wws-section-block-main-2 .wws-picture-top-desc-desc {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 24px;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wws-section-block-main-2 .wws-section-block-main-picture-check {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
}

 .wws-picture-check-picture-top,
 .wws-picture-check-picture-right {
    width: 27px;
    height: 27px;
    background: url("../../assess/img/xiangyou.png") no-repeat;
    background-size: 100% 100%;
}

.wws-section-block-main-2 .wws-picture-check-text{
    font-weight: bold;
    font-size: 18px;
    color: #C4B9A7;
    line-height: 24px;
    margin-top: 8px;
}

.wws-section-block-main-2 .wws-section-block-main-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
    padding: 0;
}

.wws-section-block-main-2 .wws-main-list-item {
    height: 40px;
    /*padding-bottom: 12px;*/
    border-bottom: 1px solid #C9C9C9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-section-block-main-2 .wws-item-headline {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.wws-section-block-main-2 .wws-headline-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--text);
    border-radius: 50%;
}

.wws-section-block-main-2 .wws-headline-text {
    flex: 1;
    font-weight: normal;
    font-size: 14px;
    color:var(--text);
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.wws-section-block-main-2  .wws-item-date {
    width: 64px;
    text-align: end;
    font-size: 12px;
    color: #999999;
    margin-left: 6px;
}

.wws-article-main-excel {
    margin-top: 34px;
}

.wws-excel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-excel-title-left {
    font-weight: bold;
    font-size: 22px;
    color: var(--text);
}

.wws-excel-title-more {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.wws-excel-main {
    margin-top: 12px;
}

.wws-excel-mains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wws-excel-mains-item {
    /*height: 221px;*/
}

.wws-excel-mains-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wws-article-video {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.wws-article-video-title {
    display: none;
}

.wws-video-list {
    padding: 15px;
    box-sizing: border-box;
    background: #FFFFFF;
}

.wws-video-list-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-video-list-item-head-title {
    font-weight: bold;
    font-size: 22px;
    color: var(--text);
}

.wws-video-list-item-head-more {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.wws-video-list-main {
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 15px 0 0 0;
}

.wws-video-list-item {
    margin-bottom: 15px;
    height: 171px;
    width: 100%;
}

.wws-video-list-item-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.wws-video-list-item-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wws-mask-tag {
    width: 60px;
    height: 26px;
    border-radius: 13px 13px 13px 13px;
    background: url("../../assess/img/video-mask-tag.png") no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 12px;
    top: 13px;
}

.wws-mask-tag-text {
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

.wws-video-list-item-main-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.61);
}

.wws-mask-text {
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}

.wws-video-books-list {
    display: flex;
    flex-direction: column;
    margin-top: 14px;
}

.wws-books-item {
    width: 100%;
    background: #FFFFFF;
    padding: 15px;
    box-sizing: border-box;
}

.wws-video-books-list-title {
    display: none;
}

.wws-books-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-books-item-head-title {
    font-weight: bold;
    font-size: 22px;
    color: var(--text);
}

.wws-books-item-head-more {
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.wws-books-item-main-list {
    padding: 0;
}

.wws-books-item-main {
    display: flex;
    align-items: center;
    height: 94px;
    margin: 14px 0 0 0;
}

.wws-books-item-main-cover {
    width: 62px;
    height: 94px;
    position: relative;
    cursor: pointer;
}
.wws-books-item-main-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wws-cover-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.61);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 23px;
}

.wws-cover-clock {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: url("../../assess/img/books-time.png") no-repeat;
    background-size: 100% 100%;
}

.wws-cover-time {
    font-weight: 500;
    font-size: 10px;
    color: #FFFFFF;
    margin-left: 3px;
}

.wws-books-item-main-introduce {
    flex: 1;
    margin-left: 11px;
    height: 100%;
}

.wws-introduce-title {
    font-weight: bold;
    font-size: 14px;
    color: #222222;
    cursor: pointer;
}

.wws-introduce-content {
    display: none;
}

.wws-introduce-auth {
    font-weight: 500;
    font-size: 12px;
    color: #A08D6F;
    margin-top: 4px;
}

.wws-section-block h2 {
    font-size: 18px;
    margin: 0 0 12px;
    border-left: 4px solid var(--accent);
    padding-left: 10px;
    color: #fff;
}

/* ===================== Article List ===================== */
.wws-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wws-article-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #444;
}

.wws-article-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
}

.wws-article-meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

/* ===================== First Article ===================== */
.wws-first-article {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wws-first-article img {
    border-radius: 6px;
    flex-shrink: 0;
    max-width: 100%;
    object-fit: cover;
}

.wws-first-article-content { flex: 1; }

.wws-first-article-content .wws-intro {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 4px;
}

/* ===================== Footer ===================== */
footer {
    height: 226px;
    background-color: #DBD5C7;
}

.wws-footer-main {
    margin: 0 auto;
    height: 100%;
    width: 1435px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wws-footer-left-logo {
    width: 298px;
    height: 44px;
    background: url("../../assess/img/logo.png") no-repeat;
    background-size: 100% 100%;
}

.wws-footer-left-mobile-logo {
    display: none;
}

.wws-dividing-line {
    width: 0;
    height: 67px;
    border: 1px solid #C6BFAD;
}

.wws-link-title{
    font-weight: bold;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
}

.wws-link-list {
    display: grid;
    width: 700px;
    grid-template-columns: repeat(5, 20%);
    gap: 12px;
    border-top: 1px solid #BFB8A4;
    margin: 6px 0 0 0;
    padding-top: 6px !important;
}

.wws-link-list-item {
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
}

.wws-after-service {
    font-weight: bold;
    font-size: 14px;
    color: #666666;
}

.wws-after-number {
    margin-top: 3px;
    font-weight: bold;
    font-size: 22px;
    color: #222222;
}

.wws-contact-us {
    margin-top: 3px;
    font-size: 12px;
    color: #666666;
}

.wws-filing {
    margin: 0 auto;
    height: 80px;
    background: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
}



/* ===================== Swiper ===================== */

.wws-swiper-pagination-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 55px;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

.wws-swiper-pagination-bar-text {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 23px;
}

.wws-swiper-pagination {
    position: static;
    display: flex;
    gap: 6px;
}

.wws-my-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ababab;
    border-radius: 5px;
    cursor: pointer;
}

.wws-my-bullet-active {
    display: inline-block;
    width: 30px;
    height: 10px;
    background: #FFFFFF;
}

.wws-brand-title {
    height: 80px;
    display: block;
}

.wws-railing-mobile {
    display: none;
}

/* ===================== Responsive ===================== */
@media (max-width: 1465px) {
    .wws-railing-main { width: 1160px }
    .wws-footer-main {width: 1200px;padding: 0 10px;}
    .wws-footer-left-logo {width: 250px;height: 38px;}
    .wws-link-title{font-size: 14px;}
    .wws-after-number { font-size: 20px; }
    .wws-link-list {width: 540px;grid-template-columns: repeat(4, 25%);gap: 6px;}
    .wws-filing {height: 72px}
}

@media screen and (max-width:1220px) {
    .wws-footer-main {width: 1000px;}
    .wws-footer-left-logo {width: 230px;height: 36px;}
    .wws-link-title{font-size: 13px;}
    .wws-after-number { font-size: 18px; }
    .wws-link-list {width: 420px;grid-template-columns: repeat(3, 33%);gap: 6px;}
    .wws-filing {height: 64px}
    .wws-link-list-item {font-size: 13px;}
    .wws-railing-mobile {display: none;}
    nav { display: none; }
    .wws-header-bottom { display: none; }
    .wws-hero { grid-template-columns: 1fr; }
    .wws-sections-grid { grid-template-columns: 1fr; }
    .wws-article-video { margin-top: 34px }
    .wws-railing-main { max-width:  100%;padding: 0 24px }
    .wws-container { padding: 0 24px;box-sizing: border-box }
    .wws-picture-top-desc-title { font-size: 18px !important; }
    .wws-picture-top-desc-desc { font-size: 15px !important; }
}

@media (max-width: 1020px) {
    .wws-footer-main {width: 840px;}
    .wws-footer-left-logo {width: 200px;height: 34px;}
    .wws-link-title{font-size: 13px;}
    .wws-after-number { font-size: 16px; }
    .wws-link-list {width: 380px;grid-template-columns: repeat(3, 33%);gap: 5px;}
    .wws-filing {height: 60px}
    .wws-hero { grid-template-columns: 1fr; }
    .wws-sections-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .wws-section-block-main-1 { grid-template-columns: 1fr;}
    .wws-section-block-main-2 .wws-section-block-main-list {grid-template-columns: 1fr;}
    .wws-section-block-main-2 .wws-section-block-main-picture {grid-template-columns: 1fr;}
    .wws-section-block-main-2 .wws-section-block-main-picture-check {height: 73px;flex-direction: row;}
    .wws-picture-check-picture-top {display: none !important;}
    .wws-picture-check-picture-right {display: block !important;width: 18px;height: 18px;margin-left: 8px;}
    .wws-section-block-title-title {font-size: 22px !important;}
    .wws-section-block-main-2 .wws-picture-top-img {width:104px;height: 158px;}
    .wws-section-block-main-2 .wws-picture-check-text {margin: 0;}
    .wws-excel-mains {grid-template-columns: repeat(2, 1fr);}
    footer {
        width: 100vw;
        height: auto;
        background: transparent;
        overflow: hidden;
        bottom: 40px;
    }

    .wws-footer-main {
        width: 100vw;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #000000;
    }

    .wws-footer-left-logo {
        display: none;
    }
    .wws-footer-left-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 80px;
        background-color: #FFFFFF;
    }
    .wws-mobile-logo {
        width: 230px;
        height: 36px;
        background: url("../../assess/img/logo.png") no-repeat;
        background-size: 100% 100%;
    }
    .wws-footer-main-center {
        width: 100%;
        padding: 30px 40px;
        box-sizing: border-box;
    }
    .wws-link-title {
        color: #FFFFFF;
    }
    .wws-link-list {
        grid-template-columns: repeat(2, 50%);
    }
    .wws-link-list-item {
        color: #999999;
        font-size: 12px;
    }
    .wws-dividing-line {
        display: none;
    }
    .wws-footer-main-right {
        width: 100%;
        padding: 0 40px 20px 40px;
        box-sizing: border-box;
    }
    .wws-after-service {
        color: #ffffff;
        font-weight: 600;
    }
    .wws-after-number {
        margin-top: 12px;
        color: #ffffff;
        font-weight: 500;
        font-size: 16px;
    }
    .wws-contact-us {
        font-size: 10px;
    }

    .wws-filing {
        height: 40px;
        line-height: 40px;
    }
    .wws-filing-copyright {
        font-size: 12px !important;
    }
}

@media (max-width: 530px) {
    .wws-container { padding: 0 16px;box-sizing: border-box }
    .wws-picture-top-desc-title { font-size: 16px !important; }
    .wws-picture-top-desc-desc { font-size: 13px !important; }
    .wws-excel-mains {grid-template-columns: 1fr;}
    .wws-top-railing {
        height: 58px;
        background-color: transparent;
    }
    .wws-railing-main {
        display: none;
    }
    header {
        display: none;
    }
    .wws-railing-mobile {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }
    .wws-search-input {
        position: relative;
        width: 330px;
        height: 36px;
        border-radius: 18px;
        overflow: hidden;
    }
    .wws-home-search-input {
        width: 100%;
        height: 100%;
        background-color: #fff;
        text-indent: 30px;
        font-size: 14px;
    }

    .wws-search-logo {
        position: absolute;
        left: 9px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        background: url("../../assess/img/search-logo.png") no-repeat;
        background-size: 100% 100%;
    }

    .wws-search-btn {
        width: 58px;
        height: 28px;
        background: var(--text);
        border-radius: 14px;
        text-align: center;
        line-height: 28px;
        justify-content: center;
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        font-size: 14px;
        color: #FFFFFF;
    }

    .wws-railing-more {
        width: 20px;
        height: 17px;
        background: url("../../assess/img/more-logo.png") no-repeat;
        background-size: 100% 100%;
    }

    .wws-swiper-pagination-bar {
        height: 34px;
        padding: 0 15px;
    }

    .wws-swiper-pagination-bar-text {
        font-size: 12px;
    }

    .wws-my-bullet {
        width: 6px;
        height: 6px;
    }

    .wws-my-bullet-active {
        width: 15px;
    }

    .wws-hero {
        height: auto;
        margin-top: 0;
    }

    .wws-recommend .wws-recommend-title {
        border-bottom: 1px solid #626262;
        margin-bottom: 10px;
    }
    .wws-recommend-title .wws-title-right {
        display: flex;
        align-items: center;
    }
    .wws-recommend-title .wws-right-logo {
        display: inline-block;
        width: 7px;
        height: 12px;
        background: url("../../assess/img/xiahuasanjiao.png") no-repeat;
        background-size: 100% 100%;
        margin-left: 3px;
    }

    .wws-recommend .wws-recommend-title .wws-title{
        font-size: 16px;
        border-bottom: 1px solid var(--text);
    }

    .wws-section-block-title-logo {
        width: 21px;
        height: 14px;
    }

    .wws-sections-grid {
        width: 100%;
        margin-top: 0 !important;
        overflow: hidden !important;
    }

    .wws-section-block-main-1 {
        height: auto !important;
        margin-top: 8px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wws-sections-grid .wws-article-main {
        width: 100%;
    }

    .wws-sections-grid .wws-section-block {
        width: 100%;
        margin-top: 20px;
    }

    .wws-sections-grid .wws-section-block-title {
        width: 100%;
    }

    .wws-section-block-title-title {
        font-size: 20px !important;
    }

    .wws-section-block-main-1 {
        width: 100%;
        flex-direction: column;
    }

    .wws-section-block-main-picture {
        width: auto;
        display: flex;
        flex-direction: column;
    }

    .wws-section-block-main-1 .wws-section-block-main-picture-main {
        padding: 9px;
        width: 100%;
        height: auto;
    }

     .wws-picture-top-img {
         width: 104px;
         height: 158px;
    }

    .wws-picture-top-desc {
        height: 100%;
        margin-left: 8px !important;
        flex: 1;
    }

    .wws-section-block-main-1 .wws-picture-top-desc-title{
        font-size: 16px;
    }

     .wws-picture-top-desc-date{
        font-size: 12px;
         white-space: nowrap;
    }
    .wws-section-block-main-1 .wws-picture-top-desc-desc{
        font-size: 13px;
        line-height: 22px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .wws-section-block-main-picture
    .wws-section-block-main-picture-check {
        height: 50px;
    }

   .wws-picture-check-text {
        font-size: 15px !important;
    }

    .wws-section-block-main-list {
        margin: 0;
    }

    .wws-section-block-main-2 .wws-section-block-main-picture-check {
        display: flex;
        align-items: center;
        flex-direction: row;
        height: 50px;
    }

    .wws-article-video {margin-top: 0;}

    .wws-video-list-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 0;
    }

    .wws-video-list-item-head {
        display: none;
    }

    .wws-article-video-title {
        border-bottom: 1px solid #626262;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wws-article-video-title-text {
        font-size: 16px;
        color: var(--text);
        font-weight: bold;
        line-height: 36px;
        border-bottom: 1px solid #626262;
    }

    .wws-article-video-title .wws-video-right-title {
        display: flex;
        align-items: center;
    }

    .wws-article-video-title .wws-video-right-title .wws-more {
        font-weight: 400;
        font-size: 14px;
        color: #999999;
    }

    .wws-article-video-title .wws-right-logo {
        display: inline-block;
        width: 7px;
        height: 12px;
        background: url("../../assess/img/xiahuasanjiao.png") no-repeat;
        background-size: 100% 100%;
        margin-left: 3px;
    }

    .wws-video-list {
        padding: 15px;
        box-sizing: border-box;
    }

    .wws-video-list-item {
        height: 150px;
        padding: 0;
        margin-bottom: 0;
    }
    .wws-video-list-item-main {
        margin: 0;
    }
    .wws-mask-tag {
        display: none;
    }

    .wws-mask-text {
        font-weight: 600;
        font-size: 12px;
    }

    .wws-video-books-list-title {
        border-bottom: 1px solid #626262;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .wws-article-books-title-text {
        font-size: 16px;
        color: var(--text);
        font-weight: bold;
        line-height: 36px;
        border-bottom: 1px solid #626262;
    }
    .wws-books-right-title {
        display: flex;
        align-items: center;
    }
    .wws-books-right-title .wws-more {
        font-weight: 400;
        font-size: 14px;
        color: #999999;
    }
    .wws-right-logo {
        display: inline-block;
        width: 7px;
        height: 12px;
        background: url("../../assess/img/xiahuasanjiao.png") no-repeat;
        background-size: 100% 100%;
        margin-left: 3px;
    }

    .wws-books-item-head {
        display: none;
    }

    .wws-books-item {
        width: 100%;
        background: transparent;
        padding: 0;
    }

    .wws-books-item-main {
        margin-top: 20px;
        height: 110px;
    }

    .wws-books-item-main-cover {
        width: 70px;
        height: 100%;
    }
    .wws-cover-mask {
        display: none;
    }
    .wws-books-item-main-introduce {
        flex: 1;
        height: 110px;
        display: flex;
        flex-direction: column;
        align-content: space-between;
    }

    .wws-introduce-content {
        height: 60px;
        display: block;
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        color: #999999;
        margin-top: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .wws-introduce-auth {
        margin-top: 6px;
    }

    footer {
        width: 100vw;
        height: auto;
        background: transparent;
        overflow: hidden;
        bottom: 40px;
    }

    .wws-footer-main {
        width: 100vw;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #000000;
    }

    .wws-footer-left-logo {
        width: 100%;
        display: none;
    }
    .wws-footer-left-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 80px;
        background-color: #FFFFFF;
    }
    .wws-mobile-logo {
        width: 80%;
        height: 40%;
        background: url("../../assess/img/logo.png") no-repeat;
        background-size: 100% 100%;
    }
    .wws-footer-main-center {
        width: 100%;
        padding: 30px 40px;
        box-sizing: border-box;
    }
    .wws-link-title {
        color: #FFFFFF;
    }
    .wws-link-list {
        grid-template-columns: repeat(2, 50%);
    }
    .wws-link-list-item {
        color: #999999;
        font-size: 12px;
    }
    .wws-dividing-line {
        display: none;
    }
    .wws-footer-main-right {
        width: 100%;
        padding: 0 40px 20px 40px;
        box-sizing: border-box;
    }
    .wws-after-service {
        color: #ffffff;
        font-weight: 600;
    }
    .wws-after-number {
        margin-top: 12px;
        color: #ffffff;
        font-weight: 500;
        font-size: 16px;
    }
    .wws-contact-us {
        font-size: 10px;
    }

    .wws-filing {
        height: 60px;
        line-height: 20px;
    }

    .wws-filing-copyright {
        font-size: 12px !important;
    }

    .wws-drawer-main-item {
        height: 65px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #E2E2E3;

    }
    .wws-drawer-main-item-title {
        font-size: 18px;
        color: #333333;
    }
}
