/*==================================
* Author        : "ThemeSine"
* Template Name :  Browny  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: '標楷體', Arial, sans-serif;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Header
3.  Welcome-hero
4.  About me 
5.  Education
6.  Skill
7.  Experience
8.  Profiles
9.  Portfolio
10. Clients
11. Contact

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
/* 重置全局样式，消除默认内边距和外边距 */
* {
    padding: 0;
    margin: 0;
}

/* 设置盒模型为边框盒模型，确保元素的内外边距不会增加元素的宽度 */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* body样式 */
body {
    font-family: '標楷體', Arial, sans-serif;
    /* 使用 'Poppins' 字体，如果不可用，则使用 sans-serif 字体族 */
    font-size: 16px;
    /* 设置默认字体大小为16像素 */
    color: #676a81;
    /* 设置文字颜色为 #676a81 */
    background: #fff;
    /* 设置背景颜色为白色 */
    max-width: 1920px;
    /* 设置最大宽度为1920像素 */
    margin: 0 auto;
    /* 居中对齐内容，左右外边距自动分配 */
    overflow-x: hidden;
    /* 隐藏水平方向上的溢出内容，以防止水平滚动条出现 */
}

/* 链接样式，包括默认、鼠标悬停、激活和聚焦状态 */
a,
a:hover,
a:active,
a:focus {
    display: inline-block;
    /* 设置链接为内联块级元素，使链接可包裹内容 */
    text-decoration: none;
    /* 去除链接的下划线效果 */
    color: #6a708e;
    /* 设置链接文字颜色为 #6a708e */
    font-size: 16px;
    /* 设置链接字体大小为16像素 */
    padding: 0;
    /* 去除链接的内边距 */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #43485c;
    font-size: 24px;
    font-family: '標楷體', Arial, sans-serif;
}

p {
    margin: 0;
    line-height: 1.8;
    color: #43485c;
    font-size: 20px;
    font-family: '標楷體', Arial, sans-serif;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

ul li {
    list-style: none;

}

select,
input,
textarea,
button {
    box-shadow: none;
    outline: 0 !important;
}

button {
    background: transparent;
    border: 0;
}

html,
/* body样式 */
body {
    height: 100%;
    /* 设置 body 的高度为100%，以占满视窗的高度 */
    position: relative;
    /* 设置相对定位，为后续绝对定位的子元素提供定位的上下文 */
}


[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s 0.3s ease;
    -moz-transition: opacity 0.3s 0.3s ease;
    -ms-transition: opacity 0.3s 0.3s ease;
    -o-transition: opacity 0.3s 0.3s ease;
    transition: opacity 0.3s 0.3s ease;
    opacity: 0;
}

.fix {
    position: relative;
    clear: both;
}

/*相對定位（position: relative）和清除浮動（clear: both）*/
/*=============Style css=========*/

/*-------------------------------------
        2. Header
--------------------------------------*/
.top-area {
    position: relative;
    z-index: 9999;
}

@media (min-width: 1024px) {}

nav.navbar.bootsnav.no-background {
    background-color: #fff;
    border: none;
}

nav.navbar.bootsnav {
    background-color: #fff;
    border-bottom: transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .2);
}

/*.navbar-brand*/
.navbar-header a.navbar-brand,
.navbar-header a.navbar-brand:hover,
.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #d92cf9;
    font-size: 20px;
    font-weight: 600;
    padding: 35px 15px 57px;
    position: relative;
    /* 添加这一行以设置相对定位 */

    /* 使用伪元素来处理图标 */
}

.navbar-brand img {
    vertical-align: middle;
    /* 将图像垂直居中 */
    margin-top: -10px;
    /* 上移10像素 */
}

/* 为 .navbar-brand 下的文本（<a> 元素）添加样式 */
.navbar-brand a {
    display: inline-block;
    color: #d92cf9;
    font-size: 20px;
    font-weight: 600;
    padding: 35px 15px 57px;
}

.dropdown-menu {
    background-color: #ffffff; /* 设置背景颜色 */
}

.dropdown-item {
    color: #000000; /* 设置字体颜色 */
    font-family: '標楷體', Arial, sans-serif;
    font-size: 20px;
}

/*.nav li*/
nav.navbar.bootsnav ul.nav>li>a {
    font-size: 24px;
    font-weight: 400;
    font-family: '標楷體', Arial, sans-serif;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

nav.navbar.bootsnav ul.nav>li>a {
    padding: 35px 20px;
}

nav.navbar.bootsnav ul.nav>li>a:hover,
nav.navbar.bootsnav ul.nav>li>a:focus,
nav.navbar.bootsnav ul.nav>li.active>a {
    color: #d92cf9;
}

nav.navbar.bootsnav ul.nav>li.dropdown>a.dropdown-toggle:after {
    content: "";
}

nav.navbar.bootsnav ul.nav>li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
}

.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav>li>a {
    color: #6a708e;
}

.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav>li>a:hover,
.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav>li>a:focus,
.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav>li.active>a {
    color: #d92cf9;
}

/*.nav li*/



/* .menu-ui-design */
.menu-ui-design {
    overflow-y: scroll;  /* 允許垂直滾動 */
    height: 350px;      /* 設定菜單框的高度 */
}

/* .menu-ui-design::-webkit-scrollbar */
.menu-ui-design::-webkit-scrollbar {
    width: 5px;         /* 設定滾動條的寬度 */
}

/* .menu-ui-design::-webkit-scrollbar-track */
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;  /* 添加內陰影效果，使滾動條融入滾動軌道 */
}

/* .menu-ui-design::-webkit-scrollbar-thumb */
.menu-ui-design::-webkit-scrollbar-thumb {
    background-color: #d92cf9;  /* 設定滾動條的顏色 */
}


/*.menu-ui-design*/



/*.navbar-toggle */
nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #d92cf9;
    padding: 10px;
    top: 0;
}

nav.navbar.bootsnav .navbar-toggle i {
    color: #d92cf9;
}

/*.navbar-toggle */



/*-------------------------------------
        3.  Welcome-hero
--------------------------------------*/
/* .welcome-hero样式 */
.welcome-hero {
    display: flex;
    /* 使用弹性布局，使其内容在水平和垂直方向上居中对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
    position: relative;
    /* 设置相对定位，以便后续绝对定位的伪元素可以相对于此元素定位 */
    /*background: url(../images/about/welcome-banner.jpg) no-repeat;  /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background: url(../images/about/2023.11.28實驗室迎新.png) no-repeat;
    /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background-size: cover;
    /* 背景图片按比例伸缩以覆盖整个元素 */
    background-position: center;
    /* 背景图片在元素内部居中显示 */
    height: 800px;
    /*设置元素的高度为1000像素 */
}

/* .welcome-hero伪元素样式，用于创建半透明遮罩效果 */
.welcome-hero:before {
    position: absolute;
    /* 设置绝对定位，使其覆盖 .welcome-hero 内容 */
    content: " ";
    /* 伪元素内容为空格 */
    top: 0;
    /* 位于 .welcome-hero 元素的顶部 */
    left: 0;
    /* 位于 .welcome-hero 元素的左侧 */ 
    background: rgba(31, 44, 108, .35);
    /*背景颜色，使用RGBA格式，设置颜色和透明度 */
    width: 100%;
    /* 宽度占满 .welcome-hero 元素 */
    height: 100%;
    /* 高度占满 .welcome-hero 元素 */
}

.photo-background {
    display: flex;
    /* 使用弹性布局，使其内容在水平和垂直方向上居中对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
    position: relative;
    /* 设置相对定位，以便后续绝对定位的伪元素可以相对于此元素定位 */
    /*background: url(../images/about/welcome-banner.jpg) no-repeat;  /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background: url(../images/about/背景.png) no-repeat;
    /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background-size: cover;
    /* 背景图片按比例伸缩以覆盖整个元素 */
    background-position: center;
    /* 背景图片在元素内部居中显示 */
    height: 876px;
    /*设置元素的高度为1000像素 */
}
.photo-background1 {
    display: flex;
    /* 使用弹性布局，使其内容在水平和垂直方向上居中对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: center;
    /* 水平居中对齐 */
    position: relative;
    /* 设置相对定位，以便后续绝对定位的伪元素可以相对于此元素定位 */
    /*background: url(../images/about/welcome-banner.jpg) no-repeat;  /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background: url(../images/about/背景反.png) no-repeat;
    /*设置背景图片的URL，不重复，背景尺寸自适应 */
    background-size: cover;
    /* 背景图片按比例伸缩以覆盖整个元素 */
    background-position: center;
    /* 背景图片在元素内部居中显示 */
    height: 876px;
    /*设置元素的高度为1000像素 */
}

/*.header-text-area*/
.header-text h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.5;
    height: 900;
    /*设置元素的高度为900像素 */
}

.header-text h2 span {
    color: #d92cf9;
}

.header-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin: 30px 0 60px;
    letter-spacing: 1px;
}

.header-text a {
    width: 200px;
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    text-transform: capitalize;
    color: #fff;
    background: #b636ff;
    border: 1px solid #b636ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.header-text a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .4);
    background: #9f00ff;
    border: 1px solid #9f00ff;
}

/*.header-text-area*/

/*-------------------------------------
        4.  About
--------------------------------------*/


.about {
    padding: 50px 0 100px;
}
.about-content table{
    margin-bottom: 400px;/* 底邊距，可以調整空白大小 */
}


.about-content {
    padding-top: 100px;
}

/*.single-about-txt*/
.single-about-txt h1 {
    font-size: 32px;
    color: #3c4258;
    text-transform: initial;
    line-height: 1.8;
}

.single-about-txt p {
    font-size: 18px;
    color: #363738;
    padding: 35px 0 43px;
    border-bottom: 1px solid #999fb3;
}

.single-about-add-info {
    margin: 35px 0;
}

.single-about-add-info h3 {
    color: #636a82;
    font-size: 16px;
    text-transform: capitalize;
}

.single-about-add-info p {
    font-weight: 300;
    border: 0;
    padding: 0;
    margin-top: 3px;
}


table {
    font-family: '標楷體', Arial, sans-serif;
    font-size: 24px;
    border-collapse: collapse;
    width: 100%;
}

th{
    border: 1px solid black;
    padding: 8px;
    text-align: left;
    font-family: '標楷體', Arial, sans-serif;
    font-size: 32px;
}

td {
    border: 1px solid black;
    /*padding: 8px;*/
    text-align: left;
    font-family: '標楷體', Arial, sans-serif;
    font-size: 20px;
}

th {
    background-color: blue;
    color: white;
    text-align: center;
}

.header-row {
    background-color: lightblue;
    color: white;
    text-align: center;
}
.header-row-10 {
    background-color: lightblue;
    color: white;
    text-align: center;
    font-size: 20px;
}

.blue-cell {
    background-color: lightblue;
    color: #000;
    text-align: center;
    font-size: 20px;
}

tr:nth-child(odd) {
    background-color: white;
}

tr:nth-child(even) {
    background-color: white;
}




/*.single-about-txt*/

/*.single-about-img */
/* .single-about-img样式 */
.single-about-img {
    position: absolute;
    /* 设置相对定位，以便绝对定位的伪元素可以相对于此元素定位 */
    box-shadow: 0 5px 20px rgba(14, 25, 80, .30);
    /* 添加阴影效果，水平偏移0，垂直偏移5px，模糊半径20px，颜色为 rgba(14, 25, 80, .30) */
}

/* .single-about-img伪元素样式 */
.single-about-img:before {
    position: absolute;
    /* 设置绝对定位，以覆盖 .single-about-img 内容 */
    content: " ";
    /* 伪元素内容为空格 */
    top: 0;
    /* 位于 .single-about-img 元素的顶部 */
    left: 0;
    /* 位于 .single-about-img 元素的左侧 */
    width: 312px;
    /* 宽度为 .single-about-img 元素宽度的109% */
    height: 362px;
    /* 高度占满 .single-about-img 元素 */
    /*background: rgba(31, 44, 108, .3);  背景颜色，使用RGBA格式，设置颜色和透明度 */
}

/* .single-about-img中的图像样式 */
.single-about-img img {
    max-width: 312px;
    /* 图像的最大宽度为400px */
    height: 362px;
    /* 图像的高度为468px */
}

/* .about-list-icon样式 */
.about-list-icon {
    display: flex;
    /* 使用弹性布局，使其内容在水平方向上排列 */
    justify-content: center;
    /* 水平居中对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    position: absolute;
    /* 设置绝对定位，以定位在 .single-about-img 内容的底部 */
    bottom: 0;
    /* 位于 .single-about-img 元素的底部 */
    left: 0;
    /* 位于 .single-about-img 元素的左侧 */
    width: 100%;
    /* 宽度为 .single-about-img 元素宽度的109% */
    height: 90px;
    /* 高度为90px */
    background: #1f2c6c;
    /* 背景颜色为 #1f2c6c */
}

/* .about-list-icon中的ul样式 */
.about-list-icon ul {
    display: flex;
    /* 使用弹性布局，使其内容在水平方向上排列 */
}

/* .about-list-icon中的ul中的li中的a样式 */
.about-list-icon ul li a {
    padding-right: 22px;
    /* 右内边距为22px */
    cursor: pointer;
    /* 鼠标指针样式为指针形状 */
    color: #fff;
    /* 文本颜色为 #fff */
}

/* .about-list-icon中的ul中的li中的a中的i样式 */
.about-list-icon ul li a i {
    margin-left: 6px;
    /* 左外边距为6px */
}


/*.ab-list-icon */

/*.single-about-img */

/*-------------------------------------
        5.  Education
--------------------------------------*/

.education {
    background: #f9fbfd;
    padding-top: 50px;
}

.education-horizontal-timeline {
    padding: 80px 0;
}

/*.education-horizontal-timeline*/
.education-horizontal-timeline .col-sm-4 {
    padding: 0 2px;
}

.single-horizontal-timeline .experience-time h3 {
    text-transform: capitalize;
}

.single-horizontal-timeline .experience-time h3 span {
    text-transform: lowercase;
}

.single-horizontal-timeline .timeline-content h5 {
    margin: 15px 0;
}

.single-horizontal-timeline p {
    color: #999fb3;
    max-width: 335px;
}

/*.timeline-horizontal-border*/
.timeline-horizontal-border {
    display: flex;
    align-items: center;
    padding: 26px 0 30px;
}

.timeline-horizontal-border i {
    font-size: 10px;
    color: #d92cf9;
    margin-right: 5px;
}

span.single-timeline-horizontal {
    display: inline-block;
    background: #b2c1ce;
    height: 1px;
    width: 380px;
}

span.single-timeline-horizontal.spacial-horizontal-line {
    width: 88px;
}

/*.timeline-horizontal-border*/

/*.education-horizontal-timeline*/

/*-------------------------------------
        6.  Skills
--------------------------------------*/
.skills {}

/* .skill-content样式 */
.skill-content {
    padding: 100px 0 80px;
    /* 上内边距100px，下内边距80px，左右内边距为默认值 */
}

/* .single-skill-content样式 */
.single-skill-content {
    padding-top: 100px;
    /* 顶部内边距为100px，其余内边距为默认值 */
}

/* .section-heading h2样式 */
.section-heading h2 {
    font-size: 40px;
    /* 设置标题字体大小为40px */
    font-weight: 600;
    /* 设置标题字体粗细为600 */
    padding-top: 100px;
    /* 顶部内边距为100px，其余内边距为默认值 */
    padding-bottom: 50px;
    /* 下内边距为50px */
    border-bottom: 1px solid #e5ebf2;
    /* 添加1像素宽的底边框，颜色为 #e5ebf2 */
}

/* .single-progress-txt样式 */
.single-progress-txt {
    display: flex;
    /* 使用弹性布局，使其内容在水平方向上排列 */
}

/* .single-progress-txt h3样式 */
.single-progress-txt h3 {
    width: 10%;
    /* 设置宽度为10% */
    color: #a606c3;
    /* 设置文字颜色为 #a606c3 */
    position: relative;
    /* 设置相对定位，以便进行位置调整 */
    top: 6px;
    /* 与顶部的距离为6px */
    left: 20px;
    /* 与左侧的距离为20px */
}

/* .barWrapper样式 */
.barWrapper {
    font-weight: 400;
    /* 设置字体粗细为400 */
    font-size: 16px;
    /* 设置字体大小为16px */
}

/* .progress样式 */
.progress {
    border-radius: 3px;
    /* 设置边框半径为3px，使边角呈现圆角效果 */
    overflow: visible;
    /* 显示内容的溢出部分 */
    background: #e6ecf3;
    /* 设置背景颜色为 #e6ecf3 */
    height: 8px;
    /* 设置高度为8px */
    margin-top: 15px;
    /* 与顶部的外边距为15px */
    width: 85%;
    /* 设置宽度为85% */
    margin-bottom: 37px;
    /* 与底部的外边距为37px */
}


.progress-bar {
    background: #b636ff;
    border-radius: 3px;
    -webkit-transition: width 1.5s ease-in-out;
    -ms-transition: width 1.5s ease-in-out;
    -moz-transition: width 1.5s ease-in-out;
    -o-transition: width 1.5s ease-in-out;
    transition: width 1.5s ease-in-out;
}

.tooltip {
    position: relative;
    float: right;
}

.tooltip>.tooltip-inner {
    background-color: transparent;
    padding: 1px 5px;
    color: #b636ff;
    font-weight: 500;
    font-size: 12px;
    border-radius: 0;
}

.popOver+.tooltip>.tooltip-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    bottom: -1px;
    transform: translateX(-50%);
    margin-left: 0;
}

/*-------------------------------------
        7. Experience
-------------------------------------*/
.experience {
    padding: 50px 0 100px;
    border-top: 1px solid #e5ebf2;
}

.experience-content {
    padding-top: 100px;
}

.single-timeline-box {
    margin-bottom: 10px;
}

/*底部外邊距（margin）為20像素*/

/*experience-time*/
.experience-time {
    position: relative;
}

.experience-time h2 {
    font-size: 20px;
    font-weight: 300;
    margin-top: 20px;
}

.experience-time h5 {
    font-size: 20px;
    font-weight: 200;
    color: #636a82;
}

/*experience-time*/

/*main-timeline*/
.main-timeline {
    position: relative;
}

.main-timeline:before {
    content: "";
    width: 2px;
    height: 84%;
    background: #b2c1ce;
    position: absolute;
    top: 1.5%;
    left: 45.8%;
    z-index: -1;
}

.main-timeline .timeline {
    position: relative;
}

.timeline-content span>i,
.experience-time span>i {
    color: #d92cf9;
    position: absolute;
    font-size: 10px;
    left: -14.5%;
    z-index: 1;
}

.timeline-content h4.title {
    font-size: 20px;
    font-weight: 400;
}

.timeline-content h5 {
    color: #636a82;
    font-size: 16px;
    font-weight: 300;
    margin: 5px 0 15px;
}

.main-timeline .description {
    font-size: 14px;
    color: #999fb3;
}

.main-timeline .timeline-content.right {
    float: right;
    text-align: left;
}

.timeline-single-before:before {
    content: '';
    top: 57px;
    left: -3px;
    position: absolute;
    width: 100%;
    height: 400px;
    border-left: 15px solid #fff;
}

.experience-time-responsive {
    display: none;
}

/*-------------------------------------
        8. Profiles
--------------------------------------*/
/* .profiles样式 */
.profiles {
    padding: 50px 0 100px;
    /* 上内边距50px，下内边距100px，左右内边距为默认值 */
    border: 1px solid #e5ebf2;
    /* 1像素宽的边框，颜色为 #e5ebf2 */
}

/* .profiles-content样式 */
.profiles-content {
    padding-top: 10px;
    /* 顶部内边距为100px，其余内边距为默认值 */
}

/* .profiles-content .col-sm-3样式 */
.profiles-content .col-sm-3 {
    padding: 0;
    /* 清除 .col-sm-3 元素的内边距，使内容紧凑排列 */
}

/* .profile-txt样式 */
.profile-txt {
    display: flex;
    /* 使用弹性布局，使其内容在水平和垂直方向上排列 */
    align-items: center;
    /* 垂直居中对齐 */
    flex-direction: column;
    /* 设置内容的主轴方向为垂直方向，使内容在垂直方向上排列 */
}


/* .single-profile样式 */
.single-profile {
    position: relative;
    /* 设置相对定位，为子元素提供定位的上下文 */
    height: 200px;
    /* 设置元素的高度为200像素 */
    display: flex;
    /* 使用弹性布局，使其内容在水平和垂直方向上居中对齐 */

    border-right: 1px solid #b2c1ce;
    /* 右侧边框为1像素宽度，颜色为 #b2c1ce */
    border-left: 1px solid #b2c1ce;
    /* 左侧边框为1像素宽度，颜色为 #b2c1ce */
    overflow: hidden;
    /* 隐藏元素内容溢出的部分 */
    -webkit-transition: background 0.5s linear;
    /* 使用WebKit浏览器的过渡效果，将背景颜色在0.5秒内线性过渡 */
    -moz-transition: background 0.5s linear;
    /* 使用Mozilla浏览器的过渡效果，将背景颜色在0.5秒内线性过渡 */
    -ms-transition: background 0.5s linear;
    /* 使用IE浏览器的过渡效果，将背景颜色在0.5秒内线性过渡 */
    -o-transition: background 0.5s linear;
    /* 使用Opera浏览器的过渡效果，将背景颜色在0.5秒内线性过渡 */
    transition: background 0.5s linear;
    /* 通用的过渡效果，将背景颜色在0.5秒内线性过渡 */
}
.single-profile h1{
    color: #43485c;
    font-size: 20px;
    font-family: '標楷體',Arial ,sans-serif;
}


.single-profile img{
    width: 200px;
    height: 200px;
    box-shadow: 0 5px 20px rgba(14, 25, 80, .30);
    /* 添加阴影效果，水平偏移0，垂直偏移5px，模糊半径20px，颜色为 rgba(14, 25, 80, .30) */
    float: left; /* 添加 float 屬性，將圖片向左浮動 */
    margin-right: 20px; /* 右邊距，根據需要調整 */
}


.profile-icon-name {
    text-transform: capitalize;
    color: #636a82;
    font-size: 16px;
}

.single-profile.profile-no-border {
    border-right: transparent;
}

.profile-border {
    border-bottom: 1px solid #b2c1ce;
}

.single-profile-overlay {
    display: flex;
    align-items: center;
    text-transform: capitalize;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    width: 100%;
    height: 100%;
    background: #d92cf9;
    background: -moz-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
    background: -webkit-linear-gradient(left, #d92cf9 0%, #b636ff 100%);
    background: linear-gradient(to right, #d92cf9 0%, #b636ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d92cf9', endColorstr='#b636ff', GradientType=1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.single-profile:hover .single-profile-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    top: 0;
}

.single-profile:hover .profile-icon-name,
.single-profile:hover .profile-txt a>i {
    color: #fff;
}

.single-profile:hover .profile-border {
    border: transparent;
}

/*-------------------------------------
        9. Portfolio
--------------------------------------*/
.portfolio {
    padding: 50px 0 100px; /* 給 Portfolio 區塊上、右、下的 padding 為 50px、0、100px */
    border: 1px solid #e5ebf2; /* 設置邊框為 1px 寬的 #e5ebf2 顏色 */
}

.portfolio-content {
    padding-top: 100px; /* 設置 Portfolio 內容頂部的 padding 為 100px */
}

/* ---- .item ---- */
.isotope:after {
    content: ''; /* 在 .isotope 元素後插入內容 */
    display: block; /* 設置元素為區塊元素 */
    clear: both; /* 清除浮動元素 */
}
/* .isotope .item */
.isotope .item {
    position: relative; /* 設置相對位置 */
    overflow: hidden; /* 超出區域的內容進行隱藏 */
    margin-bottom: 30px; /* 底部間距為 30 像素 */
}

/* .isotope .item img */
.isotope .item img {
    width: 100%; /* 圖片寬度填滿父元素 */
    height: 100%; /* 圖片高度填滿父元素 */
    -webkit-transition: .5s; /* 動畫過渡時間為 0.5 秒 */
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

/* 當 .isotope .item 元素滑鼠懸停時，圖片放大 1.5 倍 */
/*.isotope .item:hover img {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}*/

/* .isotope-overlay */
.isotope-overlay {
    position: absolute; /* 元素位置設定為絕對定位 */
    height: 100%; /* 高度佔父元素的 100% */
    width: 100%; /* 寬度佔父元素的 100% */
    background: rgba(31, 44, 108, .5); /* 背景顏色設置為半透明的深藍色 */
    display: flex; /* 使用 Flexbox 佈局 */
    align-items: center; /* 內容置中對齊 */
    justify-content: center; /* 內容水平置中對齊 */
    flex-direction: row; /* 橫向排列內容 */
    -webkit-transform: scale(0); /* 內容縮放設置為0 */
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s; /* 動畫過渡時間為 0.5 秒 */
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

/* .isotope-overlay a */
.isotope-overlay a {
    display: inline-block; /* 設置內容為內聯區塊元素 */
    color: #fff; /* 文字顏色設置為白色 */
    font-size: 14px; /* 字體大小設置為 14 像素 */
    text-align: center; /* 文字置中對齊 */
}

/* 當 .isotope .item 元素滑鼠懸停時 */

.isotope .item:hover .isotope-overlay {
    -webkit-transform: scale(1); /* 內容縮放設置為1，展現內容 */
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    top: 0;} /* 使元素頂部與父元素對齊 */


/*.isotope-overlay*/


/*-------------------------------------
        10. Clients
--------------------------------------*/
.clients {
    padding-top: 50px;
}

.clients-area {
    display: flex;
    align-items: center;
    height: 250px;
}

.clients-area .item {
    padding: 0 25px;
}

.clients .clients-area .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

/*-------------------------------------
        11. Contact
--------------------------------------*/
.contact {
    background: #f9fbfd;
    padding: 50px 0 100px;
}

.single-contact-box {
    padding-top: 100px;
}

.contact-form .form-group {
    margin-bottom: 20px;

}

.contact-form .form-control {
    padding: 25px;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 0px;
    box-shadow: none;
    outline: 0 !important;
    background: #fff;
    color: #636a82;
    resize: none;
}

/*--contct button--*/
.contact-form .single-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-transform: capitalize;
    margin-top: 3px;
    background: #b636ff;
    border: 1px solid #b636ff;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.contact-form .single-contact-btn .contact-btn,
.contact-form .single-contact-btn .contact-btn:focus {
    margin-top: 0px;
    outline: 0 !important;
    border: 0;
    color: #fff;
    border-radius: 0px;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;

}

.single-contact-btn:hover {
    background: #9f00ff;
    border: 1px solid #9f00ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

/*--contct button--*/

/* contact-adress */
.contact-add-head h3 {
    font-size: 24px;
    color: #3c4258;
}

.contact-add-head p {
    font-size: 16px;
    text-transform: capitalize;
    color: #636a82;
    font-weight: 300;
    margin-top: 6px;
}

/* contact-adress */

/*.contact-add-info */
.contact-add-info {
    margin: 42px 0 52px;
}

.single-contact-add-info h3 {
    color: #636a82;
    font-weight: 500;
}

.single-contact-add-info p {
    color: #999fb3;
    font-size: 16px;
    margin-top: 18px;
}

.single-contact-add-info {
    margin-bottom: 26px;
}

/*.contact-add-info */

/*hm-foot-icon*/
.hm-foot-icon {}

.hm-foot-icon ul li {
    float: left;
}

.hm-foot-icon ul li>a {
    color: #636a82;
    margin-right: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.hm-foot-icon ul li>a:hover {
    color: #b636ff;
}

/*hm-foot-icon*/

.hm-footer-copyright p {
    color: #888ea5;
    text-transform: capitalize;
    padding: 38px 0;
}

.hm-footer-copyright p a {
    color: #888ea5;
}

/*===============================
    Scroll Top
===============================*/
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background: #b636ff;
    border: 1px solid #b636ff;
    border-radius: 50%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 2;
}

#scroll-Top .return-to-top:hover {
    background: #fff;
    color: #b636ff;
    border: 1px solid #b636ff;
}

#scroll-Top .return-to-top i {
    position: relative;
    bottom: 0;

}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes example {
    0% {
        bottom: 0px;
    }

    100% {
        bottom: 7px;
    }
}

/*========================Thank you=================