﻿
/* ===================================
   版型
   ===================================*/
* {
  box-sizing: border-box;
}

/* ===================================
   布局樣式
   ===================================*/
.menu {
  max-width: 300px;
  margin: 0 auto;
  list-style-type: none;
}

/* ===================================
   動態效果
   ===================================*/
.drop-down {
  position: relative;
}
.submenu {
  position: relative;
  opacity: 0;
  width: 100%;
  z-index: 8;
  transition: opacity 0.5s ease;
}
.submenu-item {
  display: block;
  height: 0px;
  overflow: hidden;
  transition: height 0.5s ease;

}
.drop-down:hover .submenu {
  opacity: 1;
}
.drop-down:hover .submenu-item {
  overflow: visible;
  height: 30px;

  
}
/* ===================================
   視覺樣式
   ===================================*/
.item {
    width: 90%;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-top: 15px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif, "Microsoft JhengHei";
	color: #555555;
	border-bottom: 0px dashed #B4B4B4;
	padding-bottom: 5px;
	font-size: 16px;
	padding-left: 5%;
	padding-right: 5%;
	background-color: #FFFFFF;
}

.item:hover {
    color: #52A704;
	/* [disabled]background-color: #84C647; */
	border-bottom: 0px solid #52A704;
}
.submenu-item {
  background: #ffffff;
  color: #555555;
  width: 90%;
  padding-left: 20px;
  line-height: 30px;
}
.submenu-item:hover {
  background: #d1f586;
  color: #0538a1;
}
.now .item {
  background: #ddd;
}
.now .submenu {
  opacity: 1;
}
.now .submenu-item {
  background: #555;
  overflow: visible;
  height: 30px;
}
/*==========內容圖片=================== 
*/
.esg-contents-img{
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 512px;
  height: 300px;


}

/*==========內容圖片(1排3張)=================== 
*/
.esg-contents-img-3{
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 410px;
  height: 240px;
}
/*==========至頁面頂端=================== 
*/
.top {
  text-decoration: none;
  padding: 10px;
  font-family: sans-serif;
  color: #ffffff;
  background: #ff6a00;
  border-radius: 100px;
}

