@charset "utf-8";
/* CSS Document */
.wrap {
    width: 1000px;
    height: 300px;
    position: relative;
}

.list {
    width: 1000px;
    height: 300px;
    position: relative;
    padding-left: 0px;
}
.slist{
    position: relative;
    padding-left: 0px;
    margin: 0px;
}

.item {
    width: 100%;
    height: 100%;
    list-style: none;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all .8s;
    background-color: #00BD9D;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.sitem{
    width: 100%;
    height: 100%;
    list-style: none;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all .8s;
    background-color: #00BD9D;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.item.active {
    z-index: 10;
    opacity: 1;
}
.sitem.active {
    z-index: 10;
    opacity: 1;
}
.btn {
    width: 30px;
    height: 50px;
    z-index: 100;
    top: 126px;
    border-radius: 5px;
    position: absolute;
    border: 0px;
    background-color: rgba(0,0,0,0.1);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 3px gray;
    
}
.sbtn{
    width: 30px;
    height: 50px;
    z-index: 100;
    top: 90px;
    border-radius: 5px;
    position: absolute;
    border: 0px;
    background-color: rgba(0,0,0,0.1);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 3px gray;
}

#leftBtn,#sleftBtn {
    left: 0px;
}

#rightBtn ,#srightBtn{
    right: 0px;
}



.intro_img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #fff;
    margin: 50px 44px 44px 46px;
    border: 3px orange solid;
    overflow: hidden;
}
.intro_img>img{
    width: 208px;
    height: 208px;
    transform: translate(-5px,-5px);

}
.s_img{
    height: 230px;
    width: 320px;
    overflow: hidden;
}
.s_img>img{
    width: 320px;
/*    transform: translate(-5px,-5px);*/
}
.intro_right {
    display: block;
    width: 630px;
    margin-top: 42px;
    margin-right: 45px;
}
.intro_name {
    width: 100%;
    text-align: left;
/*    text-indent: 1.2em;*/
    font-size: 26px;
    font-weight: bold;
    color: white;
    padding: 5px 0px;
}
.intro_det {
    color: white;
    width: 633px;
    font-size: 18px;
    text-indent: 2em;
    line-height: 29px;
    text-align: left;
}
.t_ul{
    margin: 5 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0px;
}
.t_li{
    display: block;
    padding: 10px 70px;
    font-size: 22px;
    font-weight: bold;
    color: #00BD9D;
    
}
.t_li:hover {
    color: gray;
}

#scrollTopButton {
    display: none; /* 初始状态下不可见 */
    position: fixed;
    bottom: 20px; /* 距离底部的距离 */
    right: 20px; /* 距离右侧的距离 */
    background-color: #407CF4; /* 按钮背景颜色 */
    color: #fff; /* 按钮文本颜色 */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#scrollTopButton:hover {
    background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
}
