html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    position: relative; /* 为了定位 header */
    transform-origin: top left; /* 设置缩放的原点为页面左上角 */
    font-size: 16px; /* 16px 是一个常见的基准字体大小 */
}

/* 定义滚动条整体样式 */
::-webkit-scrollbar {
    width: 1px; /* 滚动条宽度 */
}

/* 定义滚动条轨道样式 */
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

/* 定义滚动条滑块样式 */
::-webkit-scrollbar-thumb {
    background-color: #888; /* 滑块颜色 */
    border-radius: 4px; /* 滑块圆角 */
}

/* 定义滚动条滑块悬停样式 */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* 滑块悬停颜色 */
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem; /* 1rem 等于基准字体大小，即16px */

}

@media (min-width: 0px) and (max-width: 414px) {
    .box-list {
        flex-direction: column;
    }
}

@media (min-width: 414px) and (max-width: 820px) {
    .box-list {

        flex-direction: column;
    }
}

@media (min-width: 820px) and (max-width: 1024px) {

}

@media (min-width: 1024px) and (max-width: 1920px) {

}

/*@media screen and (max-width: 600px) {*/
/*    body {*/
/*        overflow: hidden; !* 当页面宽度小于等于 600px 时，隐藏超出部分 *!*/
/*    }*/
/*}*/

/*@media screen and (min-width: 601px) {*/
/*    body {*/
/*        transform: scale(0.8); !* 当页面宽度大于 600px 时，缩放为 80% *!*/
/*    }*/
/*}*/
h2 {
    margin: 0;
    font-weight: 200;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 99vw;
    background-color: rgba(0, 0, 0, 0); /* 背景透明 */
    z-index: 9999; /* 设置层叠顺序 */
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5.625rem;
    font-size: 1.375rem;
}

.headtext {
    font-size: 1.375rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

.bodys {
    height: 100%; /* 填充整个视口高度 */
    width: 100%;
}

.bodys_child {
    height: 100vh;
    width: 100%;
}

.bodys_child video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.box {
    width: 100%;
    height: auto; /* 设置盒子的高度 */
    background-color: #ffffff; /* 设置盒子的背景颜色 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    /* 添加其他样式属性 */
}
.gifbox{
    width: 60%;
    height: 40rem;
    background-color: #333333;

}
.gifbox img{
    width: 100%;
    height: 40rem;

}
.AIc{
    font-size: 2.8rem;
    color: black;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin: 5rem 0;
    border: 1px solid #d2d2d2;
    border-radius: 5rem;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);

}
.linegeneral {
    width: 100%;
    height: 0.1rem;
    background-color: #000000;
}
#chatbot-frame{
    width: 100%;
    height: 100%;
    border: none;
}
.ifmax{
    width: 40%;
    height: 40rem;
    background-color: #1aa134;
}
.mengban {
    height: 100vh;
    width: 100%;
    z-index: 2;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    font-family: "Open Sans", Arial, sans-serif;
    overflow: hidden;

}

.mengban img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.mengban1 {
    flex-direction: column;
    height: 100%;
    width: 100%;
    z-index: 4;
    position: absolute;
    background-color: rgba(41, 34, 43, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-family: "Open Sans", Arial, sans-serif;
    transition: opacity 0.5s ease;

}

.mengban2 {
    flex-direction: column;
    height: 100%;
    width: 100%;
    z-index: 3;
    position: absolute;
    color: white;
    justify-content: end;
    align-items: start;
    font-size: 1.25rem;
    font-family: "Open Sans", Arial, sans-serif;
    display: none;


}

.centerbox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.active {
    display: inline-block;
    transition: transform 0.3s;
    cursor: pointer;
    font-weight: 1000;
}

.active:hover {
    transform: scale(1.1);
}

.Search {
    height: 2.8125rem;
    width: 24rem;
    border-radius: 3.125rem;
    border: 1px solid #ffffff;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1rem;
    object-fit: contain;
    cursor: pointer;
}

.input1 {
    border-radius: 50px;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.input2 {
    border-radius: 50px;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.input2::after {
    content: "";
    left: 0;
    width: 0; /* 默认宽度为0 */
    height: 2px; /* 下划线高度 */
    background-color: black; /* 下划线颜色 */
    transition: width 0.3s ease; /* 添加过渡效果 */

}

.input2:hover::after {
    width: 50%; /* 鼠标 hover 时改变下划线宽度为100% */
}

.input2:hover {
    color: #777777;
}

.Search1 {
    border-radius: 50px;
    width: 12%;
    height: 100%;
    display: flex;
    align-items: center;

}

.Search2 {
    height: 2.8125rem;
    width: 24rem;
    display: none;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1rem;
    object-fit: contain;
    cursor: pointer;
}

.Search1 img {

    width: 70%;
    height: 70%;

}

.mys {
    height: 2.8125rem;
    width: 5.625rem;
    border-radius: 3.125rem;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    object-fit: contain;
    cursor: pointer;

}

.mys img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.mys:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);

}

.mys1 {
    height: 2.8125rem;
    width: 5.625rem;
    border-radius: 3.125rem;
    border: 1px solid #adadad;
    display: none;
    align-items: center;
    object-fit: contain;
    cursor: pointer;

}

.mys1 img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.mys1:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);

}

.mengban3 {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    z-index: 5;
    position: fixed;
    left: 0;
    background-color: rgba(51, 51, 51, 0.6);
    color: white;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    font-size: 1.125rem;
    font-family: "Open Sans", Arial, sans-serif;
    /*transition: transform 0.5s ease;*/
    transition: height linear;
    overflow: hidden; /* 隐藏超出高度的内容 */
    align-items: center;
}

.mengban3_child {
    width: 100%;
    height: 10.625rem;
    background-color: #ffffff;
    display: flex;
    align-items: end;
    justify-content: center;
}

.showmsg {
    height: 31.25rem;
    background-color: #ffffff;
    width: 54rem;
    border-radius: 1.75rem;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: center;
    align-items: center;

}

.showmsg_small {
    height: 31.25rem;
    width: 54rem;
    border-radius: 1.75rem;
    /*box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);*/
    display: none;
    justify-content: end;
    align-items: start;

}

.showmsg_small_child {
    height: 60%;
    width: 36%;
    background-color: #ffffff;
    border-radius: 1.75rem;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.showmsg_small_child_item_content {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 60%;
}

.showmsg_small_child_item_content_radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 35%;
}

.custom-radio {
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 50%;
    color: #000;
    border: 1px solid #c5c5c5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.custom-radio:hover {
    border: 1px solid #444444;
}

.custom-radio img {
    width: 50%;
    height: 50%;
    object-fit: contain;


}

.showmsg_small_child_item {
    color: #000;
    font-size: 1.3rem;
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.datepicker {
    width: 50%;
    height: 100%;

}

.block {
    height: 100%;
    width: 38%;
    background-color: #ffffff;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 550;
    overflow: auto;

}

.block_child {
    padding: 50px 40px 10px 50px;
    font-size: 15px;
    color: black;
    background-color: #ffffff;

}

.block_child2 {
    width: 100%;
    height: 80px;
    font-size: 15px;
    color: black;
    background-color: #ffffff;
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;

}

.block_child2:hover {
    background-color: #dcdcdc;
}

.block_child2_child {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #c7c7c7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.block_child2_child img {
    height: 50%;
    width: 50%;

}

.block_child2_child1 {
    margin-left: 10px;
}

.block1 {
    height: 100%;
    width: 62%;
    background-color: #ffffff;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 550;
    overflow: auto;

}

.block1_child {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: black;
}

.block1_child_box {
    width: 130px;
    height: 130px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d2d2d2;
    cursor: pointer;
}

.block1_child_box:hover {
    border: 1px solid #707070;

}

.block1_child_box img {
    width: 100%;
    height: 100%;
}

.mengban3_child_radius {
    width: 54rem;
    height: 4.375rem;
    background-color: #ffffff;
    margin-bottom: 1vh;
    border-radius: 50px;
    border: 1px solid #939393;
    cursor: pointer;
    display: flex;
    color: black;
    align-items: center;
    justify-content: center;

}

.item_1 {
    width: 21.6rem;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 40px;
}

.item_1:hover {
    border-radius: 50px;
    background-color: #dcdcdc;
}

.border {
    width: 1px;
    height: 50%;
    background-color: #dcdcdc;
    right: 0;
    top: 50%;
}

.border1 {
    width: 1px;
    height: 80%;
    background-color: #dcdcdc;
    right: 0;
}

.item_2 {
    margin-left: 1px;
    height: 100%;
    width: 5.4rem;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 20px;
}

.item_2:hover {
    border-radius: 50px;
    background-color: #dcdcdc;

}

.item_3 {
    height: 100%;
    width: 21.6rem;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

/*.item_3:hover{*/
/*    border-radius: 50px;*/
/*    background-color: #ebebeb;*/
/*}*/
.item_3_child {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding-left: 20px;
}

.item_3_child1 {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding-left: 50px;
}

.title {
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
}

.subheading {
    font-size: 12px;
    color: #757575;
    overflow: hidden;

}

.subheading1 {
    font-size: 12px;
    color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.auto_img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1aa134;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);

}

/*.auto_img:hover {*/
/*    background-color: #147a28;*/

/*}*/
.auto_img img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    cursor: pointer;

}


.box-list {
    margin: 0.625rem 0; /* 0.625rem顶部和底部边距，50px左右边距 */
    width: 88rem;
    height: 37.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-list_child {
    width: 48rem;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #dedede;
}

.box-list_child img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 2.5rem;
    margin-top: 2.5rem;
    webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);

}

.box-list_child1 {
    width: 36rem;
    height: 80%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.big_tittle {
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
}

.big_tittle:hover {
    color: #018d0b;

}

.smaller_text {
    font-size: 16px;
    color: #848484;
}

.button_all {
    border-radius: 50px;
    width: 9.375rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1aa134;
    color: white;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.button_all:hover {

    background-color: #225e2c;

}

.line_back {
    margin-top: 1.5rem;
    color: #000;
    display: flex;
    align-items: end;
    justify-content: start;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 0 0 10%;
}

.tx {
    width: 100%;
    height: 135rem;
    /*background-color: #9f9f9f;*/
}

.tx_child {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 67.5rem;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.tx_child img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tx_child_list {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30rem;
    flex-direction: column;

}

.tx_child_list_c {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.tx_child_list_item {
    width: 15.125rem;
    height: 10.125rem;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.tx_child_list_item_font {
    bottom: 0.1rem;
    left: 1rem;
    position: fixed;
    color: #fff;
    display: flex;
    justify-content: end;
    align-items: start;
    font-size: 1.25rem;
    flex-direction: column;
}

.tx_child_list_box {
    background-color: #757575;
}

.inbox {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inbox:hover {
    transform: scale(1.1); /* 鼠标悬停时增加1.1倍的缩放效果，可以根据需要调整倍数 */
    transition: transform 0.3s ease; /* 添加过渡效果，使变化更平滑，可以根据需要调整过渡时间和缓动函数 */
}


.inbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

footer {
    position: absolute;
    left: 0;
    width: 100%;
    height: 32rem;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-direction: column;
    margin-top: 5rem;
    border-top: 0.1rem solid #d7d7d7;

}



.footer_child {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 1rem 0;
    box-sizing: border-box;
}
.footer_child_iconANDn{
    font-size: 1.8rem;
    height: 4rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 0.1rem solid #d7d7d7;
}
.footer_child_body{
    margin-top: 3rem;
    display: flex;
    width: 100%;
    height: 18rem;
    color: black;
    border-bottom: 0.1rem solid #d7d7d7;

}
.footer_child_body_footer{
    margin-top: 1rem;
    height: 6rem;
    width: 100%;
    display: flex;
}
.gototop{
    height: 2rem;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

}
.footer_general_bigfont{
    font-size: 1.2rem;
    font-weight: 700;

}
.footer_general_a{
    font-size: 0.97rem;
    color: #333;
    margin: 0.5rem 0;
}
.footer_child_body_child{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.footer_child_body_child_body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    box-sizing: border-box;
}
.fudong_body_child_footer {
    margin: 1rem 0;
    height: auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
}

.fudong_body_child_footer_button {
    width: 100%;
    height: 3rem;
    /*background-color: #1aa134;*/
    background: linear-gradient(to right, #1aa134, #1aa134);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}
.footer_inner_div1{
    font-size: 0.9rem;
    color: #757575;
}
.list_item_child_header_footer{
    margin-top: 0.5rem;
    font-size: 0.98rem;
    font-weight: 600;
}

.footer_head {
    width: 110rem;
    height: 100%;
}
/*transition: transform 0.3s; !* 添加过渡效果，使文字变大的过程平滑 *!*/

/*.mengban1:hover {*/
/*    transform: scale(1.2); !* 将文字放大到原始大小的1.2倍 *!*/
/*}*/