@charset "utf-8";
/*中文版*/

/*-------------------------
公共样式表
编辑：20230318，黄灿平
--------------------------*/
*{ margin:0; padding:0;}
body{ font:normal 14px/20px "微软雅黑";}
html{ background: url(/static/default/hcp-style/img/public/bg.png) 50% no-repeat;
    background-size: cover; min-height:800px;}
img { vertical-align:middle; border:none; display:inline-block; }
ul, ol ,ul, li,dl,dt,dd{ list-style:none; }
a {text-decoration:none; color:#454545; vertical-align:baseline; transition:all 0.3s linear;}
a:hover { text-decoration:none; color:#000; }
/*chrome滚动条*/
::-webkit-scrollbar-track-piece{-webkit-border-radius:0; background:none;}
::-webkit-scrollbar{width:8px; height:8px;}
::-webkit-scrollbar-thumb{-webkit-border-radius:4px; outline-offset:-2px; height:50px; background-color:rgba(31,29,29,0.6);}
::-webkit-scrollbar-thumb:hover{-webkit-border-radius:4px; height:50px; background-color:rgba(31,29,29,1);}
.clear::after{ content:""; display:block; clear:both; overflow:hidden; width:0; height:0;}

/*-------------------------
头部
编辑：20251202，黄灿平
--------------------------*/
#header{ position:fixed; top:0; left:0; z-index:999; width:100%; height:88px; box-sizing: border-box; border-bottom:1px solid #f0f0f0; background:#fff;
    -webkit-box-shadow: 0 2px 10px 0 rgba(77,80,87,.2);
    box-shadow: 0 2px 10px 0 rgba(77,80,87,.2);
}
#header .headerContent{ position:relative; width:90%; min-width:1280px; margin:0 auto;}
/*-----从上往下导航栏动画-----*/
#header.active{
    opacity: 0; /* 初始完全透明 */
    transform: translateY(-60px); /* 初始位置：向上偏移30px */
    animation: fadeInDown 0.4s ease-out forwards; /* 动画名称、时长、缓动函数、保持最终状态 */
}
/* 关键帧动画 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .logo{ display:block; float:left; width:450px; padding-top:5px;}
#header .logo img{ width:24%; height:auto;}
#header .logo span {
    vertical-align:middle;
    display:inline-block;
    color: #131313;
    font-weight:700;
    font-size: 36px;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.15em;
    text-shadow: 0.3px 0px 0 #7f7f7f, -0.3px 0.3px 1px #858585, -0.6px 0.6px 1px #8b8b8b, -0.9px 0.9px 1px #919191, -1.2px 1.2px 1px #979797, -1.5px 1.5px 1px #9d9d9d, -1.8px 1.8px 1px #a3a3a3, -2.1px 2.1px 1px #a9a9a9, -2.4px 2.4px 1px #afafaf, -2.7px 2.7px 1px #b5b5b5, -3px 3px 1px #bbbbbb, -3.3px 3.3px 1px #c1c1c1, -3.6px 3.6px 1px #c7c7c7, -3.9px 3.9px 1px #cdcdcd, -4.2px 4.2px 1px #d3d3d3, -4.5px 4.5px 1px #d9d9d9, -4.8px 4.8px 1px #dfdfdf, -5.1px 5.1px 1px #e5e5e5, -5.4px 5.4px 1px #ebebeb, -5.7px 5.7px 1px #f1f1f1, -6px 6px 1px #f7f7f7, -6.3px 6.3px 1px #f8f8f8, -6.6px 6.6px 1px #f8f8f8, -6.9px 6.9px 1px #f8f8f8, -7.2px 7.2px 1px #f8f8f8, -7.5px 7.5px 1px #f8f8f8, -7.8px 7.8px 1px #f8f8f8, -8.1px 8.1px 1px #f8f8f8, -8.4px 8.4px 1px #f8f8f8;
    }
#header:after{clear:both; content:""; display:table;}
#header .btn-logout{ font-size:12px;}
#header .btn-logout:before{ margin-right:5px;}
/*-----栏目菜单-----*/
/* 导航栏样式 */
.navbar { display:block; float:right; max-width: 1200px; margin-right:-25px; padding-top:20px;}
.main-menu {
    display: flex;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}
.menu-item {
    position: relative;
}
.menu-item > a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.menu-item > a:hover {
    color: #e72118;
}
.menu-item.hover > a,
.menu-item.active > a,
.menu-item.active > a:hover {
    color: #e72118;
}

/* 动画线条效果 */
.menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}
.menu-item a:hover::after {
    width: 100%;
}
/*-----用户信息-----*/
.user{ position:absolute; top:2px; right:0; font-size:12px; color:#999;}
.user span{ padding:0 10px;}

/*-------------------------
底部内容
编辑：20251202，黄灿平
--------------------------*/
.footer{ padding:50px 0 50px 0; font-size:14px; color:#b1b1b1; text-align:center; line-height:25px;}
.footer a{ margin:0 5px; color:#999;}
.footer a:hover{ color:#333;}
.navBtn {
    position:fixed; z-index:99; bottom:100px; right:30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navBtn2{ 
    bottom:180px;
    animation: bounceBasic 2s infinite ease-in-out;/* 基础跳动动画 */
}
.navBtn2 .tooltip{ width:100px; left:50%; margin-left:-58px;}
.navBtn:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.navBtn:hover .tooltip,
.navBtn:hover .tooltip::before {
  background-color: #ff6c33;
  color: #ffffff;
}
.tooltip {
  position: absolute;
  top: 0;
  z-index:999;
  width:90px;
  text-align:center;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navA {
    display:block;
    transition: all 300ms ease-out;
    border: none;
    width: 60px;
    height: 60px;
    line-height:48px;
    text-align:center;
    border-radius: 15%;
    opacity:.6;
    --i: var(--light, 0);
    --not-i: calc(1 - var(--i));
    --j: var(--press, 0);
    --not-j: calc(1 - var(--j));
    z-index: var(--i);
    transform: scale(calc(1 - var(--j)*.02));
    box-shadow: calc(var(--not-j)*-0.25em) calc(var(--not-j)*-0.25em) 0.25em rgba(252, 252, 252, var(--not-j)), calc(var(--not-j)*0.25em) calc(var(--not-j)*0.25em) 0.25em rgba(210, 218, 230, var(--not-j)), inset calc(var(--j)*0.25em) calc(var(--j)*0.25em) 0.25em rgba(210, 218, 230, var(--j)), inset calc(var(--j)*-0.25em) calc(var(--j)*-0.25em) 0.25em rgba(252, 252, 252, var(--j));
    background: #e8e8e8;
    font-size: 2.5em;
    transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.2, 4, 1, 3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.navA:before{ font-size:24px; opacity:.5;
    filter: Contrast(0) Sepia(var(--i)) Hue-Rotate(calc(var(--hue) - 50deg)) Saturate(5) Opacity(calc(var(--i) + .21*var(--not-i))) Drop-Shadow(1px 1px hsla(0, 0%, 100%, var(--not-i)));
    transition: filter 0.3s;
}
.navA:hover::before{ color:#ff6c33; opacity:1}
.navA:focus {
    outline: none;
}
.navA:hover, .navA:focus {
    --light: 1 ;
    opacity:1;
}
.navA:active {
    --press: 1 ;
}

/*-------------------------
提交设计需求（弹框）
编辑：20251218，黄灿平
--------------------------*/
/* 弹框遮罩层 */
.modalOverlay, .modalOverlay2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}
.modalOverlay.active, .modalOverlay2.active {
    opacity: 1;
    visibility: visible;
}
/* 弹框主体 */
.modal {
    background: rgba(255,255,255, 1);
    border-radius: 20px;
    width: 90%;
    max-width: 850px;
    padding: 0;
    overflow: hidden;
    transform: scale(0.5) rotate(-5deg);
    opacity: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.modal.active {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

/* 弹框头部 */
.modalHeader {
    background: linear-gradient(180deg, #b9d7f5 0%, #e4edf6 50%, #ffffff 100%);
    color: white;
    padding: 25px 30px 0 30px;
    position: relative;
}
.modalTitle {
    font-size: 24px;
    color:#545b6f;
    margin: 0;
    padding:10px 0;
    letter-spacing: 0.15em;
    font-weight: 700;
}
.modalTitle p{ padding:20px 0; line-height:25px; letter-spacing:0; font-size:16px; font-weight:normal;}
.modalClose {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 52px;
    background: none;
    border: none;
    color: #545b6f;
    font-weight:400;
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor:pointer;
    opacity:.5;
}
.modalClose:hover {
    /*background-color: rgba(255, 255, 255, 0.2);*/
    transform: rotate(90deg);
    opacity:.8;
}
/* 弹框内容 */
.modalBody { padding:10px 30px;}
.modalBody .modalInput, .modalBody .modalTextarea{ height:46px; margin:5px 0; padding:5px 10px; line-height:50px; font-size:16px; color:#333; border:1px solid #eee; border-radius:4px; box-sizing: border-box; transition: all 0.4s ease;}
.modalBody .modalInput:focus, .modalBody .modalTextarea:focus{ outline: none; border:1px solid #666;}
.modalBody .modalInput[readonly], .modalBody .modalTextarea[readonly]{ border:1px solid #eee;}
/*.modalBody .modalInput[readonly]:focus, .modalBody .modalTextarea[readonly]:focus{ outline: none; border:0;}*/
.modalBody .modalInput{ width:80%;}
.modalBody .modalInput::placeholder, .modalBody .modalTextarea::placeholder{ color:#999;}
.modalBody .modalTextarea{ width:100%; height:130px; line-height:30px; font-family:"微软雅黑";}
.modalFooter {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: center;
}
.modalBtn {
    width: 200px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.15em;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.modalBtn:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.modalBtn:focus {
    outline: none;
}
/*.modalBtn:active{background-position: 100% 0;*/
/*    moz-transition: all .4s ease-in-out;*/
/*    -o-transition: all .4s ease-in-out;*/
/*    -webkit-transition: all .4s ease-in-out;*/
/*    transition: all .4s ease-in-out;}*/

/*-------------------------
其他内容
编辑：20251202，黄灿平
--------------------------*/
/*提示页*/
.msg{ position:absolute; top:0; left:0; right:0; bottom:0; width:600px; height:200px; margin:auto; padding:30px; border-radius:8px; box-shadow: 0 4px 30px rgb(0 80 179 / 3%); background:#fff;}
.msg h3{}
.msg p{ color:#888; font-size:16px;}
.msg p span{ margin:0 3px; font-size:18px; color:#ff0000;}
.msg a{ margin:20px auto; font-size:18px; color:red;}
/* 基础跳动动画 */
@keyframes bounceBasic {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-15px);
    }
}