/*
Theme Name: Custom Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: A custom WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/

/* Import the original styles */
@import url('index.css'); 

/* 保留原有的CSS样式 */
body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
body {
  padding: 0;
  margin: 0;
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
  /* overflow: hidden; 取消禁止页面滚动条 */
}

.container {
  width: 100%;
  height: auto;      /* 改为 auto，避免强制撑满父级 */
  overflow: visible; /* 改为 visible，避免出现滚动条 */
  background-color: #fff;
}
.header {
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.header-japan {
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.logo {
  position: absolute;
  left: 348px;
  width: 136.11px;
  height: 24.55px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 136.11px;
  height: 24.55px;
  display: block;
}
.nav {
  position: absolute;
  right: 322px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
.nav a {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  text-decoration: none;
  height: 100%;
  padding: 29px 0;
  transition: color 0.2s;
}
.nav a img {
  margin-left: 8px;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.nav a:hover {
  color: #1550a5;
}
.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("./images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.banner_content {
  width: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner_title {
  font-size: 100px;
  font-weight: 600;
  color: #fff;
}
.banner_text {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.banner_button {
  width: fit-content;
  margin-top: 50px;
  border-radius: 20px;
  padding: 6px 12px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.banner_button a {
  color: #fff !important;
  text-decoration: none;
}
.section_1 {
  width: 100%;
  height: 620px;
  background-color: #fff;
  padding-top: 120px; 
}
.section_1_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 50px;
  position: relative;
}

.section_1_title::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #333;
}
.section_1_content {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_1_content_left {
  width: 50%;
  padding: 50px;
}
.section_1_content_right {
  width: 50%;
  text-align: center;
}
.section_1_content_left_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}
.section_1_content_left_text1 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 20px 0px;
}
.section_1_content_left_text2 {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  padding: 20px 0px;
}
.section_2 {
  width: 100%;
  height: 620px;
  background-color: #f5f7fa;
  padding-top: 100px; 
}
.section_2_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 50px;
  position: relative;
}

.section_2_title::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #333;
}
.section_2_content {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_2_content_left {
  width: 55%;
  text-align: center;
}
.section_5_content_left {
  width: 55%;
  text-align: center;
}
.section_2_content_right {
  width: 50%;
  padding: 50px;
}
.section_2_content_right_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}
.section_2_content_right_text {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  padding: 10px 0px;
  margin-bottom: 4px;
}
.section_3 {
  width: 100%;
  padding-bottom: 80px;
  background-color: #fff;
}
.section_3_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 50px;
  position: relative;
}

.section_3_title::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #333;
}
.section_3_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1120px;
  height: 380px;
  margin: 0 auto;
}
.section_3_content_left {
  width: 50%;
  background-color: #1550a5ff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #fff;
  height: 100%;
  padding: 60px;
}

.section_3_content_right_title {
  font-size: 32px;
  font-weight: 600;
}
.section_3_content_left_text1 {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  padding: 20px 0px;
}
.section_3_content_right_text {
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0px;
}
.section_3_content_right {
  width: 50%;
  height: 100%;
}
.section_6_content_right {
  width: 50%;
  height: 100%;
}
.section_3_content_right img {
  height: 100%;
  width: 560px;
}
.section_6_content_right img {
  height: 100%;
  width: 560px;
}

.section_4 {
  width: 100%;
  padding-bottom: 20px;
  background-image: url('./images/Frame-45.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.section_4_title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 50px;
  position: relative;
}

.section_4_title::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #333;
}
.section_4_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1120px;
  height: 380px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.section_4_content_left {
  width: 50%;
  text-align: center;
}
.section_4_content_right {
  width: 50%;
  padding: 30px;
}

.bottom {
  width: 100%;
  height: 500px;
  background-color: #1550a5ff;
}
.bottom_content {
  width: 1120px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.bottom_content_left {
  width: 50%;
  height: 100%;
  padding: 80px 20px 0px 0px;
}
.bottom_content_right {
  width: 50%;
  height: 100%;
  padding: 80px 20px 0px 0px;
}
  .bottom_content_left_title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
  }
  .bottom_content_left_title1 {
    font-family: 'Source Han Sans CN Medium', 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
  }
.bottom_content_left_text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 0px;
}
.footer {
  width: 100%;
  height: 100px;
  background-color: #144394ff;
}
.footer_content {
  width: 100%;
  height: 100%;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.solutions-row {
  display: flex;
  margin-top: 32px;
  gap: 0;
  align-items: flex-start;
}
.solution-box {
  width: 118px;
  height: 124px;
  background: #fff;
  border: 1px solid #e6eaf2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.solution-box img {
  width: 25px;
  height: 25px;
  margin-bottom: 8px;
  margin-top: 0;
}

.solution-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-title, .solution-subtitle {
  color: #666666 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-align: center;
}

.white-text-custom {
  color: #fff !important;
}

.section_2_content_left img {
  border-radius: 9px;
}
.section_5_content_left img {
  height: 100%;
  width: 560px;
}


.bottom_contact_block {
  width: 359px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bottom_contact_info {
  font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.bottom_contact_item {
  margin-bottom: 4px;
  white-space: nowrap;
}

.bottom_contact_item:last-child {
  margin-bottom: 0;
}

.bottom_contact_address {
  font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.contact-form-title, .contact-form-label {
  color: #fff !important;
}

.contact-form-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 28px;
}

.section_4_content_left img[src$='2.png'] {
  border-radius: 10px;
} 

.contact-form-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.cf7-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 200px;
}

.cf7-col-name .cf7-name-row {
  display: flex;
  gap: 8px;
}

.contact-form-label {
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 16px;
}

.wpcf7-form .cf7-col-message input[type="text"] {
  width: 100%;
}

.wpcf7-form .cf7-col-submit {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.wpcf7-submit {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-left: 12px;
}

.wpcf7-submit:hover {
  background-color: #0056b3;
}