﻿body {
}

/* 基础样式 */
:root {
    --primary-color: #2A5C82;
    --accent-color: #FF6B6B;
    --text-light: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 按钮容器 */
.quote-button {
    position: absolute;
    bottom: 10px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E3A56 100%);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(42,92,130,0.3);
    transform: translateY(0);
}

    /* 悬停效果 */
    .quote-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(42,92,130,0.4);
        background: linear-gradient(135deg, #336699 0%, #254B6B 100%);
    }

    /* 点击效果 */
    .quote-button:active {
        transform: translateY(1px);
        box-shadow: 0 4px 16px rgba(42,92,130,0.2);
    }

    /* 波纹动画 */
    .quote-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: width 0.4s, height 0.4s, opacity 0.4s;
    }

    .quote-button:active::after {
        width: 300px;
        height: 300px;
        opacity: 1;
    }

/* 图标动画 */
.button-icon {
    display: inline-block;
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.quote-button:hover .button-icon {
    transform: translateX(3px) rotate(-10deg);
}

/* 加载状态 */
.quote-button.loading {
    pointer-events: none;
    padding-right: 3.5rem;
}

.loading .button-icon {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 成功状态 */
.quote-button.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.success .button-icon {
    transform: scale(1.2);
}

/* 价值观卡片 */
.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 10px;
}

.value-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #1E3A56);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .value-card h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 1rem 0;
    }

    .value-card p {
        font-size: 15px;
    }

    .value-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1));
        transform: rotate(45deg);
    }
/* 响应式设计 */
@media (max-width: 1024px) {

    .value-cards {
        grid-template-columns: 1fr;
    }
}

.background {
    position: relative;
    height: 100vh;
    background: linear-gradient( 120deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75% );
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* 基础样式 */
:root {
    --primary-color: #1a73e8; /* 主品牌色 */
    --secondary-color: #2d3e50; /* 辅助色 */
    --nav-bg: #2d3e50; /* 导航栏背景色 */
    --nav-text: #ffffff; /* 导航文字颜色 */
    --nav-hover: #1abc9c; /* 悬停颜色 */
    --dropdown-bg: #34495e; /* 下拉菜单背景 */
    --active-color: #3498db; /* 选中状态颜色 */
}

/* 头部导航 */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-size: 14px;
}

/* 导航栏容器 */
.navbar {
    background: var(--nav-bg);
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

/* 导航菜单布局 */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* 导航项基础样式 */
.nav-item {
    position: relative;
    padding: 20px 25px;
    color: var(--nav-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .nav-item a {
        color: var(--nav-text);
        text-decoration: none;
        font-size: 14px;
    }

/* 下拉菜单样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dropdown-bg);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-item {
    padding: 12px 20px;
    color: var(--nav-text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 交互状态 */
.nav-item:hover {
    background: var(--nav-hover);
}

    .nav-item:hover .dropdown-menu {
        display: block;
    }

.dropdown-item:hover {
    background: var(--nav-hover);
}

/* 选中状态 */
.nav-item.active {
    background: var(--active-color);
    border-bottom: 3px solid #fff;
}

/* 首屏Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    color: white;
    padding: 8rem 5% 4rem;
    text-align: center;
}

/* 产品展示模块 */
.products-section {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* 解决方案模块 */
.solutions-section {
    padding: 4rem 5%;
}

.solution-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* 移动端隐藏导航，显示汉堡菜单 */
    }

    .nav-container {
        flex-direction: column;
        height: auto;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}
.display_none
{
    display:none;
    }

.download_titles
{
   line-height:150%;
   color:#3a3a3a;
   font-weight:bold;
   width:100px;
   text-align:right;
   float:left;
   margin-right:5px;
   }
.download_desc
{
   border-left:2px solid #DADBD6;
   padding:0px 0px 10px 10px;
   width:440px;
   float:left;
   text-align:left;
   line-height:150%;
   }
.download_desc span.download_name
{
  color:#ff3300;
  font-weight:bold;
   }
.download_desc p
{
  margin:0px;
  padding:0px;
  }
.btn_download
{
  font-weight:bold;
  text-decoration:underline;
  color:#fe6c00;
  }
.btn_download:hover
{
  text-decoration:none;
  color:#ff3300;
  }
.btn_download_locked
{
    padding-left:20px;
    background-image:url('../images/lock.png');
    background-repeat:no-repeat;
    background-position:0px -2px;
    }
    
.button_orange
{
  background-image:url('../images/button_orange.png');
  width:108px;
  height:30px;
  text-align:center;
  background-repeat:no-repeat;
  color:white;
  line-height:30px;
  cursor:pointer;
  border:0px;
  background-color:Transparent;
  display:inline-block;
  }
.button_orange_normal
{
  background-position:-4px -2px;
  }
.button_orange_hover
{
  background-position:-124px -2px;
  }
.button_orange_active
{
  background-position:-244px -2px;
  } 
.big_button_blue
{
     background-image:url('../images/big_blue_btn.png');
      width:191px;
      height:38px;
      text-align:center;
      background-repeat:no-repeat;
      color:white;
      line-height:38px;
      cursor:pointer;
      border:0px;
      background-color:Transparent;
      display:inline-block;
    }
 .big_button_blue_normal
 {
     background-position:0px -1px;
     }
 .big_button_blue_hover
 {
     background-position:0px -40px;
     }
.big_button_blue_active
{
     background-position:0px -40px;
    }
    
.button_gray
{
  background-image:url('../images/button_gray.png');
  width:108px;
  height:30px;
  text-align:center;
  background-repeat:no-repeat;
  color:#C7260E;
  font-weight:bold;
  line-height:30px;
  cursor:pointer;
  border:0px;
  background-color:Transparent;
  display:block;
  }
.button_dark_blue
{
    background-image:url('../images/button_dark_blue.png');
    width:102px;
    height:40px;
    text-align:center;
    background-repeat:no-repeat;
    color:white;
    line-height:40px;
    cursor:pointer;
    border:0px;
    display:inline-block;
    font-size:14px;
    font-weight:bold;
}
.button_dark_blue_normal
{
    background-position:0px 0px;
    }
.button_dark_blue_hover
{
    background-position:-112px 0px;
}
.button_dark_blue_active
{
    background-position:-224px 0px;
    }
.download_button
{
  margin:25px 20px 0px 90px;
  }
  
.pageLink
{
	padding:4px 5px 4px 5px;
	border:solid 1px silver;
}

.pageLinkCurrent
{
	padding:4px 5px 4px 5px;
	font-weight:bold;
	color:Black;
}

/* ***** For agent partners ***** */
.list_collection_2
{
    list-style-type:disc;
    list-style-image:url('../images/icon-bullet-blue-10.png');
    color:#616365;
    line-height:150%;    
    margin-bottom:10px;
    text-indent:0;
    margin-left:30px;
    }
.list_collection_2 li
{
    margin-top:5px;
    }
 .agency_info_item
 {
     padding:10px 0px 10px 0px;
     }
 .required_flag
 {
     color:Red;
     margin-right:5px;
     }
 .agency_item_label
 {
     width:120px;
     text-align:right;
     line-height:24px;
     display:block;
     float:left;
     font-size:14px;
     }
 .agency_input
 {
     width:400px;
     height:20px;
     border:1px solid #BDC7D8;
     line-height:20px;
     margin-left:5px;
     font-size:16px;
     }
  .agency_text_area
  {
     width:400px;
     height:60px;
     border:1px solid #BDC7D8;
     line-height:20px;
     margin-left:5px;
     font-size:16px;
      }
  .agency_button
  {
      margin-left:100px;
      margin-top:10px;
      }
 /* ***** end for angent partners ***** */
 .loading
{
    position:absolute;
    left:0px;
    top:0px;
    height:100%;
    width:100%;
    background-image:url('../images/loading.gif');
    background-position:50% 50%;
    background-repeat:no-repeat;
    z-index:21;
    }
    
    
.modal_background {
	 display: none;
	 position: fixed;
	 top: 0px;
	 left: 0px;
	 width: 100%;
	 height: 100%;
	 background-color: gray;
	 z-index:2001;
	 -moz-opacity: 0.4;
	 opacity:0.4;
	 filter: alpha(opacity=40);
}

.modal_container
{
     display: none;
	 position: fixed;
	 top: 0px;
	 left: 0px;
	 width: 100%;
	 height: 100%;
	 background-color: transparent;
	 z-index:2002;
	 overflow:auto;
    }
.modal {
	 position: absolute;
	 z-index:2003;
	 overflow: hidden; 
}
.modal_opacity 
{
    position:absolute;
    left:0px;
    top:0px;
    opacity:0.4;
    -moz-opacity:0.4;
    filter:alpha(opacity=40);
    background-color:#535154;
    z-index:2004;
    width:100%;
    height:100%;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    }
.popup_panel
{
    position:absolute;
    display:none;
    z-index:2005;
    margin:10px;
    background-color:White;
    }
 .popup_topbar
 {
     background-image:url('../images/solution_slide.png');
     background-repeat:repeat-x
     }
.popup_footbar
{
    background-image:url('../images/popup_tool_bar_bg.png');
    }
.popup_topbar
{
    height:40px;
    width:100%;
    background-position:left bottom;
    background-color:#D5D5D5;
    }
.popup_topbar .text
{
    margin-right:40px;
    height:100%;
    line-height:40px;
    font-size:14px;
    font-weight:bold;
    color:Black;
    float:left;
    }
.popup_topbar .closebtn
{
    float:right;
    width:40px;
    height:100%;
    }
.popup_topbar .closebtn span
{
    background-image:url('../images/popup_close.png');
    background-repeat:no-repeat;
    display:inline-block;
    width:40px;
    height:40px;
    }
.popup_topbar .closebtn_link span
{
    background-position:8px 6px;
    }
.popup_topbar .closebtn_hover span
{
    background-position:-32px 4px;
    
    }
.popup_topbar .closebtn_active span
{
    background-position:-74px 4px;
    }   
.popup_center
{
    margin-left:5px;
    margin-right:5px;
    overflow:auto;
    }
.popup_footbar 
{
    width:100%;
    height:22px;
    padding:9px 0px;
    background-position:0px -40px;
    border-top:1px solid #DEDEDE;
    background-color:#D5D5D5;
    }
.msg_box_body
{
   padding:15px 10px 0px 10px;
   line-height:150%;
    }
.msg_box_body p
{
    text-indent:2em;
    }
#pDownloadLogin
{
    width:700px;
    height:500px;
    }
 .download_loading
 {  
    position:absolute;
    left:0px;
    top:0px;
    height:100%;
    width:100%;
    background-image:url('../images/loading.gif');
    background-position:50% 50%;
    background-repeat:no-repeat;
    z-index:21; 
     }
#pDownloadLogin .pEnterKey
{
	background:url(../images/productHeader.png) repeat-x 0 bottom;
	padding:15px 20px 20px 20px;
}

#pDownloadLogin .pEnterKey div
{
    width:400px;
    margin-left:auto;
    margin-right:auto;
    }
#pDownloadLogin .pEnterKey .text
{
    width: 270px;
    outline: none;
    background: none;
    border: none;
    height: 19px;
    margin: 0;
    padding: 13px 10px;
    _padding-bottom: 10px;
    font-size: 14px;
    line-height: normal;
    color: #000;
    font-weight: bold;
    }
#pDownloadLogin .pEnterKey .water_text
{
    width: 270px;
    outline: none;
    background: none;
    border: none;
    height: 19px;
    margin: 0;
    padding: 13px 10px;
    _padding-bottom: 10px;
    font-size: 14px;
    line-height: normal;
    color: #BEBEBE;
    }
#pDownloadLogin .pEnterKey .button
{
    position:absolute;
    top:3px;
    right:3px;
    }
.ipt_t
{
    line-height: 0;
    font-size: 0;
    border-radius: 2px;
    position: relative;
    height: 46px;
    border: 1px solid #BAC7D2;
    background-color: #ECF5FA;
    box-shadow: 0 0 2px RGBA(0,46,115,.25) inset;
    font-family: "Microsoft Yahei";    
    }
.pRequestKey
{
    margin-top:15px;
    margin-left:5px;
  }
.pRequestKey p
{
    text-indent:2em;
    color:#666;
    line-height:150%;
    }
.pRequestKey dl
{
    margin-top:10px;
    }
.pRequestKey dt
{
    width:120px;
    padding:5px 5px;
    float:left;
    text-align:right;
    }
.pRequestKey dd
{
    padding:5px 0px;
    float:left;
    }
.pRequestKey dd input
{
    width:300px;
    }
.pRequestKey .button
{
    margin-left:100px;
    margin-top:15px;
    }
.software_download_title
{
    font-size:18px;
    font-weight:bold;
    margin-bottom:15px;
    }
.software_block
{
    margin:5px 20px 5px 20px;
    font-size:14px;
    }
 .software_block a
 {
     font-weight:bold;
     color:#ff5400;
     }
.software_block a:hover
{
  text-decoration:underline;
}
.software_desc
{
   padding:20px 20px 5px 20px;
  }

.preview-container
{
    width:450px;
    height:288px;
    position: relative; 
	overflow: hidden;
	
    -webkit-box-shadow:0px 0px 10px #A0A0A0;
    -moz-box-shadow:0px 0px 10px #AOAOAO;
    box-shadow:0px 0px 10px #A0A0A0;
    }
.preview-container img
{
    width:450px;
    height:288px;
    }
.slider_toggle
{
    position:absolute;
    display:none;
    background-image:url("../images/lrbtn.png");
    background-repeat:no-repeat;
    height:68px;
    width:42px;
    cursor:pointer;
    }
.slide_next
{
    background-position:-41px 0px;
    top:112px;
    right:0px;
    }
.slide_previous
{
    background-position:0px 0px;
    top:112px;
    left:0px;
    }

.contact_us_block
{
    margin:5px 0px;
    }
.contact_us_block textarea,
.contact_us_block input
{
    border: 1px solid #cccccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    }
.contact_us_block input
{ 
    height:24px;
    line-height:24px;
    }
 
.complete_message_panel
{
    padding:100px 0px;
    text-align:center;
    }
    
.soft_trial_shortcut
{
    background-image:url('../images/soft_trial.jpg');
    background-position:0px 0px;
    background-repeat:no-repeat;
    text-align:center;
    display:inline-block;
    text-decoration:none;
    width:324px;
    height:50px;
    margin-top:20px;
    font-size:24px;
    line-height:50px;
    color:White;
}

.soft_trial_shortcut:hover
{
    color:#812900;
    }

.soft_trial_shortcut_1
{
    text-align:center;
    display:inline-block;
    margin-top:20px;
    margin-left:20px;
    font-size:20px;
    line-height:50px;
    color:#ff3300;
    }
    
.soft_trial_shortcut_2,.soft_trial_shortcut_3
{
    display:inline-block;
    font-size:20px;
    line-height:50px;
    color:#ff5400;
    text-decoration:underline;
    }
    
.soft_trial_shortcut_2:hover,.soft_trial_shortcut_3:hover
{
    color:#ffc703;
    }
    
.soft_trial_shortcut_2
{
    text-align:center;
    margin-left:20px;
    }
    
    