/*！--CSS重置和样式初始化*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,multiline
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: rgba(73, 73, 73, 1);
    text-decoration: none;
}


a:hover {
    /* text-decoration:none;  */
}

img {
    border: none;
    margin: 0;
    padding: 0;
}

ol,
ul,
li {
    list-style: none;
}


.flexCC {
    display: flex;
    justify-content: center;
    align-items: center;
}



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

body {
    font-family: "Microsoft YaHei", sans-serif;
    
    color: #fff;
    line-height: 1.5;
}

.container {
    max-width: 750px;
    margin: 0 auto 50px auto;
    overflow: hidden;


}
.basic-page-bg {
  /* height: 100%; */
  position: absolute;
  background: url('../image/bg.jpg') repeat-y center center fixed;
  background-size: 100% 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  flex-direction: column;
}
.fixed-bg {
    position: fixed;
}
/* 顶部标题区域 */
.header {

    padding: 55px 15px 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;

    align-items: center;
    justify-content: center;
}

.slogan {
    font-size: 18px;
    color: #ff6600;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.subtitle-left {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
}

.subtitle-right {
    font-size: 24px;
    color: #fff;
}

.header-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #99ccff;
}

/* 权威发布区域 */
.authority {
    background-color: #ffffff;
    border: 1px solid rgba(99, 135, 177, 1);
    border-radius: 4px;
    margin: 15px 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.authority-header {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.key-icon {
    color: #ff9900;
    font-size: 18px;
    margin-right: 8px;
}

.authority-title {
    color: #ff6600;
    font-size: 16px;
    font-weight: bold;
}

.authority-content {
    padding: 15px;
}

.authority-content p a {
    font-weight: 400;
    font-size: 16px;
    color: #0F3782;
    margin-bottom: 20px;
    line-height: 1.5;
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.authority-content p+p {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* 动态列表样式 */
.dynamics-list {
    margin-top: 10px;
}

.dynamics-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.5;
}

/* 今日推荐区域 */
.today-recommend {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    margin: 15px 60px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.recommend-header {
    margin: 0 auto;

}

.recommend-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;

}

.recommend-content {
    padding: 10px 10px;
}

.school-card {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: -10px;

    /* background: url('../image/pic-bg.png') 100%; */

}
.recommend-item{
    margin-bottom: 10px;
}
.school-card-image {
    width: 100%;

   height: 8rem;
    overflow: hidden;
        position: relative;
}
.picBg{
    border-radius: 8px;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(27, 74, 156, 0.0), rgba(27, 74, 156, 0.0), rgba(27, 75, 156, 0.1),rgba(27, 75, 156, 0.4), #194a9c)
    /* background: url('../image/pic-bg.png') 100%; */
    /* opacity: 0.9; */
}
.recommend-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.school-card-info {
    position: relative;
    z-index: 5;
    margin-top: -3.5rem;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.school-card-title {
    flex: 1;
    height: 51px;
     line-height: 51px;
    color: #fff;
    font-size: 14px;
    overflow-y: scroll;
    font-weight: normal;
}
.multiline {
    font-size: 12px; /* 换行时减小字号 */
   line-height: 20px; 
   
}
.school-card-actions {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    justify-content: flex-end;
    margin-top: 5px;
    margin-right: 10px;
}

.enroll-btn {
    background-image: url('../image/bohao.png');
    background-size: 100% 100%;
    width: 4.5rem;
    height: 1.6rem;

    padding: 8px 0;

}

.view-school {
    background-color: #e6f2ff;
    color: #3875C6;
    padding: 2px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}

/* 名校联展区域 */
.school-exhibition {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 15px 60px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.exhibition-header {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    background-color: #3875C6
}

.exhibition-content .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.exhibition-content .swiper-slide {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.exhibition-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.exhibition-content {
    padding: 10px;
}

.exhibition-card {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.exhibition-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.exhibition-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.exhibition-card-info {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.exhibition-card-title {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.exhibition-card-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.exhibition-enroll-btn {
    background-color: #e6f2ff;
    color: #3875C6;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.exhibition-view-btn {
    background-color: #e6f2ff;
    color: #3875C6;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #3875C6;
}

.swiper-button-next,
.swiper-button-prev {

    background-image: url('../image/right-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}

.swiper-button-prev {
        display: none;
    background-image: url('../image/left-icon.png');
    left: 10px;


}

.swiper-button-next {
    display: none;
    right: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '' !important;
}

/* 查询按钮区域 */
.query-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 10px;
}

.query-btn {
    display: block;
    background-color: #3875C6;
    color: white;
    text-align: center;
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    box-shadow: 0 2px 5px rgba(0, 102, 204, 0.3);
}

.query-btn:hover {
    background-color: #0055aa;
}

/* 学校招生动态区域 */
.school-dynamics {
    background-color: #3875C6;
    border-radius: 8px;
    margin: 15px 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.dynamics-header {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #0077dd;
}

.dynamics-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.dynamics-content {
    padding: 15px;
}

.search-box {
    display: flex;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background-color: rgba(181, 138, 35, 1);
    color: #333;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
}

.dynamics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.dynamics-item {

    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.dynamics-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.dynamics-item:last-child {
    border-bottom: none;
}

.view-more {
    text-align: center;
    margin-top: 10px;
}

.view-more a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* 分区看校区域 */
.district-schools {
   // background-color: #3875C6;
    border-radius: 8px;
    margin: 15px 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.district-header {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #0077dd;
}

.key-icon {
    color: #ffcc00;
    font-size: 18px;
    margin-right: 8px;
}

.district-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.district-content {
    padding: 15px;
}

.hexagon:hover {
    background-color: rgba(135, 206, 250, 0.9);
}

.contact-info {
    background-color: rgba(56, 117, 198, 1);
    text-align: center;
    margin: 15px 0 10px;
    line-height: 55px;
    height: 55px;
    color: rgba(195, 200, 212, 1);
    font-size: 16px;
}

.contact-info span {
    margin: 0;
    color: #fff;
}

.copyright {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.8;
}

.copyright p {
    margin: 0;
}

/* 学校介绍区域 */
.intro {
    background-color: rgba(0, 0, 51, 0.7);
    padding: 20px;
    margin: 15px 10px;
    border-radius: 8px;
    border: 1px solid #3875C6;
}

.intro p {
    line-height: 1.6;
    margin-bottom: 10px;
    text-indent: 2em;
    font-size: 14px;
}

/* 校园环境图片区域 */
.campus-title {
    background-color: #3875C6;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    margin: 15px 0 0 0;
    font-weight: normal;
}

.campus-subtitle {
    background-color: #3875C6;
    color: #99ccff;
    padding: 5px 15px 10px;
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.school-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 10px 15px;
}

.school-image-container {
    position: relative;
    margin-bottom: 10px;
}

.school-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

.image-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 102, 0.7);
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 0 0 5px 0;
}

/* 招生信息区域 */
.admission-title {
    background-color: #3875C6;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    margin: 15px 0 0 0;
    font-weight: normal;
}

.admission-subtitle {
    background-color: #3875C6;
    color: #99ccff;
    padding: 5px 15px 10px;
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.admission-info {
    background-color: rgba(0, 0, 51, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin: 0 10px 15px;
    border: 1px solid #3875C6;
}

.admission-info p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

/* 咨询按钮 */
.consult-btn-container {
    background-color: #3875C6;
    padding: 15px;
    text-align: center;
}

.consult-btn-title {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
}

.consult-btn-subtitle {
    color: #99ccff;
    font-size: 12px;
    margin-bottom: 15px;
}

.consult-btn {
    display: block;
    background: linear-gradient(to bottom, #0080ff, #3875C6);
    color: white;
    text-align: center;
    padding: 12px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    width: 90%;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.7);
}

/* 招生优势区域 */
.advantage-title {
    background-color: #3875C6;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    margin: 15px 0 0 0;
    font-weight: normal;
}

.advantage-subtitle {
    background-color: #3875C6;
    color: #99ccff;
    padding: 5px 15px 10px;
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.advantage-content {
    background-color: rgba(0, 0, 51, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin: 0 10px 15px;
    border: 1px solid #3875C6;
}

.advantage-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
    text-indent: 2em;
}

/* 标签区域 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 10px;
    justify-content: center;
}

.tag {
    background-color: #3875C6;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

/* 价格区域 */
.price-container {
    text-align: center;
    margin: 20px 0;
}

.price {
    display: inline-block;
    font-size: 24px;
    color: #ffcc00;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    background-color: rgba(0, 0, 102, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
}

/* 联系按钮 */
.contact-btn {
    display: block;
    background: linear-gradient(to bottom, #0080ff, #3875C6);
    color: white;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 25px 20px;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.7);
}

/* 页脚区域 */
.footer {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #999;
    background-color: #000033;
    border-top: 1px solid #3875C6;
    margin-top: 20px;
}


.basic-content-item {
    text-align: center;
    width: 11.45rem;
    display: flex;
    height: 3rem;
    position: relative;
    /* margin: 0.5rem; */
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(180deg, #64B8FF 0%, #458EFF 100%); */
    background-image: url('../image/bg-btn-item.png');
    border-radius: 0.33rem;
    /* border: 0.07rem solid #FFCF8D; */
    box-sizing: border-box;
    word-break: break-all;
    padding: 0.3rem;
    box-sizing: border-box;
    font-size: 0.8rem;
    font-weight: 500;
    background-size: 100% 100%;
    color: #FFFFFF !important;
    text-shadow: 0px 0px 0px #335D9E;
}

.model-list {
    display: none;
    z-index: 10;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    background-color: #024FB9;
    background-image: url('../image/bg-bottom.png');
    background: url("../image/bg.jpg") no-repeat top center;
    background-size: cover;
}

.list-com {
    width: 94%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}

.model-list .title {
    margin: 2rem auto 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff;
}

.index-close {
    display: block;
    position: absolute;
    left: 0;
    bottom: 1rem;
    width: 100%;
}

.index-close i {
    display: block;
    width: 3.8rem;
    height: 3.8rem;
    background: url("../image/icon-back.png") no-repeat center;
    background-size: 100%;
    margin: 0 auto;
}

.index-close span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 2rem;
}

.model-list a {
    color: #fff;
}

.model-list .ccmx_list ul {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: scroll;
}

.model-list .ccmx_list ul li {
    opacity: 0;
}

.basic-content-item {
    text-align: center;
    width: 11.45rem;
    display: flex;
    height: 3rem;
    position: relative;
    /* margin: 0.5rem; */
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(180deg, #64B8FF 0%, #458EFF 100%); */
    background-image: url('../image/bg-btn-item.png');
    border-radius: 0.33rem;
    /* border: 0.07rem solid #FFCF8D; */
    box-sizing: border-box;
    word-break: break-all;
    padding: 0.3rem;
    box-sizing: border-box;
    font-size: 0.8rem;
    font-weight: 500;
    background-size: 100% 100%;
    color: #FFFFFF;
    text-shadow: 0px 0px 0px #335D9E;
}

.basic-content-item {
    margin-top: 0.7rem;
}




.shcool-pub-top,
.shcool-pub-bottom {
    position: relative;
}

.school-wrap {
    width: 100%;
    min-height: 8rem;
    box-sizing: border-box;
}

.school-wrap.has-bg {
    background-color: #3875C6;
    padding: 15px;
}

.school-wrap-title {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.school-wrap-search {
    display: flex;
    align-items: center;
    width: 100%;
    height: 2.5rem;
    background-color: #fff;
    margin: 0.7rem 0;
    padding-left: 0.7rem;
    /* padding: 0 0.7rem; */
    box-sizing: border-box;
}

.search-tip {
    color: #d5c5a0;
    background-color: #003E94;
    position: relative;
    z-index: 9;
    font-size: 0.9rem;
}

.search-strong-txt {
    color: red;
}

.school-wrap-search input {
    flex: 1;
    height: 100%;
    font-size: 0.9rem;
    border: 0;
}

.search-close-btn {
    height: 1.2rem;
    margin: 0 0.5rem;
    display: none;
}

.school-wrap-search button {
    width: 5rem;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(181, 138, 35, 1);
    border: unset;
    color: #fff;
}

.search-no-data {
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    opacity: 0.3;
    font-size: 0.8rem;
}

.search-no-data p {
    margin-top: 0.7rem;
}

.school-wrap-search button img {
    width: 0.8rem;
    /* height: 1rem; */
    padding: 0;
    margin-right: 0.5rem;
}

.school-wrap-search button::after {
    border: unset;
    outline: unset;
}

.school-wrap-search input:focus {
    border: 0;
}

.school-wrap-title img {
    width: 100%;
}

.wrap-content-frist-item {
    padding-bottom: 0.8rem;
    padding-top: 0.92rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrap-content-frist-item:nth-last-of-type(1) {
    border: 0;
}

.wrap-content-frist-item .item-name {
    color: #fff;
    font-size: 0.9rem;
}

.wrap-content-frist-item .item-time {
    color: #fff;
    font-size: 0.81rem;
    color: #ABBFDC;
}

.school-wrap-content-second,
.school-wrap-content-third {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.wrap-content-second-item {
    width: 11.45rem;
    margin-right: 0.7rem;
    margin-top: 0.7rem;
    background: linear-gradient(357deg, rgba(33, 125, 245, 1) 0%, rgba(127, 188, 253, 1) 77%);
}

.wrap-content-second-item:nth-of-type(2n) {
    margin-right: 0;
}

.wrap-content-second-item .item-cover {
    width: 100%;
    height: 6.29rem;
    background-color: #fff;
}

.wrap-content-second-item .item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
}

.wrap-content-second-item .item-name {
    width: 100%;
    background-color: transparent;
    font-size: 0.8rem;
    padding: 0.68rem 0.46rem;
    box-sizing: border-box;
    color: #fff;
    /* height: 6.29rem; */
    /* background-color: #fff; */
}


.school-publish-title {
    width: 9.83rem;
    height: 1.4rem;
    background-image: url('../image/index-title5.png');
    margin: 0 auto 1rem;
}

.school-wrap-content-swiper,
.search-wrap-content-swiper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    height: 17rem !important;
    padding-bottom: 1rem;
}

.search-wrap-content-swiper {
    display: none;
}

.publish-content,
.search-result-content {
    height: 22rem;
}

.publish-content-item {
    width: 100%;
    color: #FFFFFF;
    font-size: 0.9rem;
    padding-bottom: 0.8rem;
    padding-top: 0.92rem;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.publish-content-item a {
    color: #fff;
}

.publish-content-item .item-time {
    font-size: 0.8rem;
    margin-top: 0.53rem;
    color: #ABBFDC;
    /* color: red; */
}

.publish-more {
    width: 100%;
    height: 2.33rem;
    background: rgba(254, 255, 255, 0.44);
    border-radius: 0.17rem;
    margin: 1.3rem auto 0;
    line-height: 2.33rem;
    text-align: center;
    color: #FFFFFF;
}

.liulan {
    margin-top: -30px;
    justify-content: center;
    display: flex;
    align-items: center;

}

.enter-page {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 9;
    background-color: #133aac;
}

.enter-page img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}


.enter-page-mask {
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    position: absolute;
    z-index: 9999;
}

.area-content {
    margin-top: 2rem;
    width: 23rem;
    height: 23rem;
    margin: 1.7rem auto;
    position: relative;
    background-image: url('../image/bg-a2.png');
    background-size: 100% 100%;
}

.area-example {
    position: fixed;
    top: 430px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 23rem;
    background-image: url('../image/example.png');
}

.area-title {
    width: 100%;
    /* height: 1.4rem; */
    height: 3.14rem;
    background-image: url('../image/index-title6.png');
    margin: 3rem auto 1.87rem;
}

.area-circle-text {
    display: block;
    width: 18rem;
    height: 18rem;
    position: absolute;
    left: 2.5rem;
    top: 2.5rem;
    z-index: 3;
    transform: rotate(100deg);
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}

.swiper-pagination-bullet{
  width:4px!important;
  height:4px!important;
}